Skip to main content



      Home
Home » Eclipse Projects » Dynamic Languages Toolkit (DLTK) » Blank console window after running Ruby code(Problem seeing the output of a ruby program ran in Eclispe)
Blank console window after running Ruby code [message #996265] Tue, 01 January 2013 10:37 Go to next message
Eclipse UserFriend
I am all new in developing and I am trying to get things up and running.
I have developed the little test program called "Hello.rb":

class Hello
def Hello
puts "Hello Ruby World"
end
end

After running the program, the only thing I see in the "Console" is that "<Terminated> Hello.rb [Ruby Script] /usr/bin/ruby/" but the window is blank. I don't have any output in the Console: I do not see the output message "Hello Ruby World". Any idea why that is happening? (I use "Ruby 1.9.3″ and I use "Eclipse IDE for C/C++ Developers, Version: Juno Service Release 1″ where I have installed the "Dynamic Languages Toolkit Ruby Development Tools")

Funnily enough for the following program the output is correctly displayed in the Console:
class HelloYourName
print ('What is your name:')
name = gets()
puts ("Hello #{name}")
end

[Updated on: Tue, 01 January 2013 13:41] by Moderator

Re: Blank console window after running Ruby code [message #996314 is a reply to message #996265] Tue, 01 January 2013 14:10 Go to previous messageGo to next message
Eclipse UserFriend
To have some output that method should be invoke actually, e.g. like this:

class Hello
def hello
puts "Hello Ruby World"
end
end

o = Hello.new
o.hello

But if you want just print something, then you can write only puts:

puts "Hello Ruby World"

Regards,
Alex
Re: Blank console window after running Ruby code [message #996348 is a reply to message #996314] Tue, 01 January 2013 16:34 Go to previous message
Eclipse UserFriend
Thanks Alex, perfect, it works all fine by doing what you said
Previous Topic:Instance DLTK Editor manually
Next Topic:Debugging Ruby on Eclipse
Goto Forum:
  


Current Time: Sun Jul 13 03:18:01 EDT 2025

Powered by FUDForum. Page generated in 0.04245 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top