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 :cry:

···

--
Posted via http://www.ruby-forum.com/.

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

···

On Nov 17, 2007 1:31 PM, Pat Kiatchaipipat <l3litzer@hotmail.com> wrote:

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 :cry:
--
Posted via http://www.ruby-forum.com/\.

--
----------------------------------------------------------------------
Yours,
Waleed Harbi
waleed.harbi@gmail.com
Nothing without reason everything 4 something.

Use...

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

..., this might help.

Wolfgang Nádasi-Donner

···

--
Posted via http://www.ruby-forum.com/.