Codebase list ohcount / fresh-snapshots/main test / detect_files / eiffel.e
fresh-snapshots/main

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

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

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

			print ("Hello, world!%N")

		end
end