Skip to content
Snippets Groups Projects
Select Git revision
  • 88413cd2dc6521fcc3ab66724a492f6141bb0bbf
  • master default protected
2 results

call.rs

Blame
  • call.rs 78 B
    fn f(x: i32, y: i32) -> i32 {
        3 + 5 + x + y
    }
    
    fn main() {
        f(1, 2);
    }