mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-12 19:18:24 +00:00
9 lines
153 B
Rust
9 lines
153 B
Rust
|
mod Main {
|
||
|
|
||
|
pub fn main(argc: i32, argv: *const *const u8) -> i64 {
|
||
|
let a: i32 = 2;
|
||
|
let b: i64 = a as i64;
|
||
|
return b;
|
||
|
}
|
||
|
}
|