mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-03 10:33:34 +00:00
8 lines
120 B
Rust
8 lines
120 B
Rust
// A basic library to be used in tests with no real purpose.
|
|
|
|
mod foo;
|
|
|
|
pub fn sum(a: i32, b: i32) -> i32 {
|
|
a + b
|
|
}
|