How to run sample program in eiffel studio

by rennie ss4u (modified: 2018 Jun 14)

class

APPLICATION

inherit

ARGUMENTS

create

make

feature

make
	do
	 	io.put_string ("Hello, world!%N")
	end

end

when i compiled this program i got this result "Eiffel Compilation Succeeded" ..

When i run the program i got this out put

Launching system :

 - directory = `/home/ss4u/Desktop/project/
 - arguments = `test

System is running Application launched Application is running Application exited

But this output "Hello, world!" is not showing...

Comments
  • Manu (14 years ago 29/12/2009)

    You should post such questions on the forums: http://forum.eiffel.com.

    If you are on Unix, then you need to start EiffelStudio from a shell. On Windows a DOS prompt should appear with the text in it. If you are targeting .NET, make sure to select `console application' in the advanced section of the project settings dialog.