Codebase list ohcount / e3e8128 test / src_dir / eiffel.e
e3e8128

Tree @e3e8128 (Download .tar.gz)

eiffel.e @e3e8128raw · history · blame

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

			print ("Hello, world!%N")

		end
end