Codebase list ohcount / upstream/3.1.1 test / src_dir / eiffel.e
upstream/3.1.1

Tree @upstream/3.1.1 (Download .tar.gz)

eiffel.e @upstream/3.1.1raw · history · blame

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

			print ("Hello, world!%N")

		end
end