leo/compiler/tests/statements/assertion_basic.leo

3 lines
51 B
Plaintext
Raw Normal View History

2020-07-31 03:11:58 +03:00
function main(a: bool) {
assert_eq!(a, true);
}