mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-09 09:38:24 +00:00
13 lines
172 B
Plaintext
13 lines
172 B
Plaintext
mod Main {
|
|
|
|
pub fn main(argc: i64, argv: ptr<char>) -> i64 {
|
|
let mut a: i64 = 0;
|
|
|
|
if argc > 2 {
|
|
a = 1;
|
|
}
|
|
|
|
return a;
|
|
}
|
|
}
|