RosettaCodeData/Task/Assertions/Eiffel/assertions-2.e
2023-07-01 13:44:08 -04:00

8 lines
155 B
Text

class TEST
feature assert(val: INTEGER) is
require
val = 42;
do
print("Thanks for the 42!%N");
end
end