1 2 3 4 5 6
fn assert(condition: bool) { if condition == false { println("Assertion failed") exit(1) } }