Codebase list ohcount / bullseye-backports/main test / src_dir / eiffel.e
bullseye-backports/main

Tree @bullseye-backports/main (Download .tar.gz)

eiffel.e @bullseye-backports/mainraw · history · blame

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

			print ("Hello, world!%N")

		end
end