gets.chomp....... not function

V

Vister Gade

heloo.... i m a beginner of ruby...

so i have a problem about gets function or gets.chomp.....

when i run at SciTE.... it will not do anything... just a command
blank....
if i run it from file to ruby interpreter... the question will appear...
but when i insert input and enter... it will disappear....


what are the problem is had... and what are the solution.....

please help.....

thanks...
 
D

Daniel Finnie

Hi,

Can you post your code?

Generally, programs requiring user interaction do not work well in
programs like SCiTE and should be run from the command line.

Here is an example of using gets:
puts "What is your favorite color?"
color = gets
if gets == "red"
puts "that's mine too!"
else
puts "bad choice..."
end

Dan
 
V

Vister Gade

puts ' What is your full name?'
name = gets.chomp
puts ' Did you know there are ' + name.length.to_s + ' characters'
puts ' in your name, ' + name + ' ?'
 
K

Kyle Hunter

Vister said:
heloo.... i m a beginner of ruby...

so i have a problem about gets function or gets.chomp.....

when i run at SciTE.... it will not do anything... just a command
blank....
if i run it from file to ruby interpreter... the question will appear...
but when i insert input and enter... it will disappear....


what are the problem is had... and what are the solution.....

please help.....

thanks...

The Windows command prompt closes after the program is done running
unless the program was run by an already existing command prompt IIRC.
My advice would be to opening a command prompt, and running it from an
already opened command prompt. This should allow you to see the output
of your program.
 
V

Vister Gade

Kyle said:
The Windows command prompt closes after the program is done running
unless the program was run by an already existing command prompt IIRC.
My advice would be to opening a command prompt, and running it from an
already opened command prompt. This should allow you to see the output
of your program.



Thanks... can u teach me how to run in step by step.... sorry but i
really needing u help....
 
P

Phillip Gawlowski

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Vister Gade wrote:

|> The Windows command prompt closes after the program is done running
|> unless the program was run by an already existing command prompt IIRC.
|> My advice would be to opening a command prompt, and running it from an
|> already opened command prompt. This should allow you to see the output
|> of your program.
|
|
|
| Thanks... can u teach me how to run in step by step.... sorry but i
| really needing u help....

Start -> Run... -> cmd<enter> -> help<enter>

Navigate to the directory you saved the Ruby script, and type "ruby
name_of_your_script.rb".

This assumes that Ruby is in your path. Otherwise, you'll have to type
in the path to ruby.exe, too (For example: "c:\ruby\bin\ruby.exe
your_scrupt.rb").

More help can be found here: http://www.google.com /


- --
Phillip Gawlowski
Twitter: twitter.com/cynicalryan

~ - You know you've been hacking too long when...
...you've been low-level debugging ethernets for a week and you see two
people at a table trying to pick up the same jar of butter and you
directly wonder if they are using the correct CSMA/CD algorithm to avoid
a re-collision.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkgC6fsACgkQbtAgaoJTgL8K2wCgp8bne4hva7aPHeF88QCSmtXS
HsQAn1AaZVHSKHb1oKwYaJ+r8BaWagXx
=Uu7T
-----END PGP SIGNATURE-----
 
M

Marc Heiler

Thanks... can u teach me how to run in step by step.... sorry but i
really needing u help....

For testing purposes you should use irb (irb.bat or whatever the name on
windows was), this way you are independent of a GUI (and bugs or
problems inside that GUI) too.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Staff online

Members online

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,040
Latest member
papereejit

Latest Threads

Top