RosettaCodeData/Task/Assertions/Ecstasy/assertions.ecstasy

7 lines
82 B
Plaintext

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