Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions e/Eiffel.eiff
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
indexing "Hello World in Eiffel , from http://roesler-ac.de/wolfram/hello.htm#Eiffel"
note

description: "Hello World in Eiffel"

class HELLO

creation
create
run

feature

run is
local
io : BASIC_IO;
run
do
!!io;
io.put_string("Hello World");
io.put_newline
end; -- run
end; -- class HELLO
io.put_string ("Hello World")
io.put_new_line
end -- run

end -- class HELLO