Codebase list ohcount / 71f18fd0-2918-4673-9432-32d77816000d/main test / src_dir / eiffel.e
71f18fd0-2918-4673-9432-32d77816000d/main

Tree @71f18fd0-2918-4673-9432-32d77816000d/main (Download .tar.gz)

eiffel.e @71f18fd0-2918-4673-9432-32d77816000d/mainraw · history · blame

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

			print ("Hello, world!%N")

		end
end