RosettaCodeData/Task/Assertions/Ecstasy/assertions.ecstasy
2024-07-13 15:19:22 -07:00

6 lines
82 B
Text

module test {
void run() {
Int x = 7;
assert x == 42;
}
}