6 lines
93 B
Plaintext
6 lines
93 B
Plaintext
assert :: (condition: bool) {
|
|
if !condition {
|
|
out("assertion failed\n");
|
|
}
|
|
}
|