mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
8 lines
113 B
Plaintext
8 lines
113 B
Plaintext
function main(a: u32) {
|
|
if a == 1 {
|
|
assert_eq!(a, 1);
|
|
} else {
|
|
assert_eq!(a, 0);
|
|
}
|
|
}
|