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

11 lines
119 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class
HELLO_WORLD
create
make
feature
make
do
print ("Hello world!%N")
end
end