RosettaCodeData/Task/Assertions/Vala/assertions.vala

5 lines
116 B
Vala
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
int a = 42;
int b = 33;
assert (a == 42);
assert (b == 42); // will break the program with "assertion failed" error