Codebase list ohcount / 5ab1807 test / detect_files / eiffel.e
5ab1807

Tree @5ab1807 (Download .tar.gz)

eiffel.e @5ab1807raw · history · blame

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

			print ("Hello, world!%N")

		end
end