Codebase list ohcount / c941801a-846c-49c1-93c4-07f1094d7537/main test / src_dir / eiffel.e
c941801a-846c-49c1-93c4-07f1094d7537/main

Tree @c941801a-846c-49c1-93c4-07f1094d7537/main (Download .tar.gz)

eiffel.e @c941801a-846c-49c1-93c4-07f1094d7537/mainraw · history · blame

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

			print ("Hello, world!%N")

		end
end