13 lines
118 B
Rust
13 lines
118 B
Rust
|
|
fn my_int_fn() -> i32 {
|
|
return 123;
|
|
}
|
|
|
|
fn main()
|
|
{
|
|
my_int_fn();
|
|
}
|
|
|
|
// vim: syntax=rust commentstring=//\ %s
|
|
|