Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
120 B
Rust
Raw Normal View History

// A basic library to be used in tests with no real purpose.
mod foo;
pub fn sum(a: i32, b: i32) -> i32 {
a + b
}