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

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

eiffel.e @debian/latestraw · history · blame

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

			print ("Hello, world!%N")

		end
end