RosettaCodeData/Task/Hello-world-Text/Eiffel/hello-world-text.e

11 lines
119 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class
HELLO_WORLD
create
make
feature
make
do
2015-11-18 06:14:39 +00:00
print ("Hello world!%N")
2013-04-10 21:29:02 -07:00
end
end