mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +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);
|
|
}
|
|
}
|