Codebase list ohcount / run/8fccc97f-1091-4606-8a80-1b8fb386766a/main test / detect_files / eiffel.e
run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

Tree @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main (Download .tar.gz)

eiffel.e @run/8fccc97f-1091-4606-8a80-1b8fb386766a/mainraw · history · blame

class
	HELLO_WORLD
create
	make
feature
	make
		do
			-- prints "Hello world!" and starts new line

			print ("Hello, world!%N")

		end
end