RosettaCodeData/Task/Assertions/Vala/assertions.vala

5 lines
116 B
Vala
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
int a = 42;
int b = 33;
assert (a == 42);
assert (b == 42); // will break the program with "assertion failed" error