Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 121 Bytes

index.md

File metadata and controls

11 lines (9 loc) · 121 Bytes
fn main() {
    let r = somefunc(6);
    println!("{}", r); 
}

fn somefunc(x:i32) -> i32{
    return x+1;
}