Codebase list ohcount / fresh-snapshots/upstream test / src_dir / eiffel.e
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

eiffel.e @fresh-snapshots/upstreamraw · history · blame

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

			print ("Hello, world!%N")

		end
end