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

9 lines
155 B
Text
Raw Permalink Normal View History

2013-04-09 00:46:50 -07:00
class TEST
feature assert(val: INTEGER) is
require
val = 42;
do
print("Thanks for the 42!%N");
end
end