racket/collects/honu/examples/error-prim.honu
2005-05-27 18:56:37 +00:00

5 lines
90 B
Plaintext

int main() {
int x = if true { 3; } else { error("I shouldn't be here!"); };
x + 4;
}