Codebase list ohcount / lintian-fixes/main test / src_dir / eiffel.e
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

eiffel.e @lintian-fixes/mainraw · history · blame

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

			print ("Hello, world!%N")

		end
end