mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-22 17:11:42 +03:00
8 lines
134 B
Plaintext
8 lines
134 B
Plaintext
function main(bit: private u32) {
|
|
if bit == 1u32 {
|
|
assert_eq!(bit, 1u32);
|
|
} else {
|
|
assert_eq!(bit, 0u32);
|
|
}
|
|
}
|