Codebase list ohcount / upstream/latest test / detect_files / eiffel.e
upstream/latest

Tree @upstream/latest (Download .tar.gz)

eiffel.e @upstream/latestraw · history · blame

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

			print ("Hello, world!%N")

		end
end