Codebase list ohcount / fc0f4e2e-584f-4c68-9809-ad96640f54f0/main test / detect_files / eiffel.e
fc0f4e2e-584f-4c68-9809-ad96640f54f0/main

Tree @fc0f4e2e-584f-4c68-9809-ad96640f54f0/main (Download .tar.gz)

eiffel.e @fc0f4e2e-584f-4c68-9809-ad96640f54f0/mainraw · history · blame

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

			print ("Hello, world!%N")

		end
end