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

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

eiffel.e @upstream/4.0.0raw · history · blame

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

			print ("Hello, world!%N")

		end
end