Codebase list ohcount / 6c6b3496-5c95-4881-94ad-331592f9fd83/main test / src_dir / eiffel.e
6c6b3496-5c95-4881-94ad-331592f9fd83/main

Tree @6c6b3496-5c95-4881-94ad-331592f9fd83/main (Download .tar.gz)

eiffel.e @6c6b3496-5c95-4881-94ad-331592f9fd83/mainraw · history · blame

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

			print ("Hello, world!%N")

		end
end