Ploblem with SciTE

hi! I’m a new programmer in Ruby

and now I have problem with ruby in SciTE
when I want to take input to operate with function I use

print "Enter First Name : "
firstName = gets.to_s

It can’t show output when press ‘F5’ but it show completely in cmd

and I have trouble to switch between cmd and SciTE
please help me :’(

I prefer use eclipse IDE with RDT plugin, it is very powerful.

Use…

print "Enter First Name : "
STDOUT.flush
firstName = gets.to_s

…, this might help.

Wolfgang Nádasi-Donner