RosettaCodeData/Task/Assertions/Ecstasy/assertions.ecstasy

7 lines
82 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
module test {
void run() {
Int x = 7;
assert x == 42;
}
}