RosettaCodeData/Task/Assertions/Eiffel/assertions-2.e

9 lines
155 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class TEST
feature assert(val: INTEGER) is
require
val = 42;
do
print("Thanks for the 42!%N");
end
end