chore: initialize a standard lib project

This commit is contained in:
2025-11-16 07:58:16 +01:00
parent 9aac3d6bed
commit e0fe0786ac
7 changed files with 7 additions and 13 deletions

View File

View File

View File

@@ -1,14 +1,8 @@
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
use std::*;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}
mod fun;
mod imp;
mod mcr;
mod str;
mod trt;
mod tst;

View File

View File

View File

View File