f_arslan_first 0.1.0

An application where you can analyze the given test
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let z = my_function(23);
    println!("{z}");
}

fn my_function(x: i32) -> i32 {
    // return 4;
    println!("{x}");
    let y = 10;
    y
}