I downloaded and installed Ruby via the One-Click installer, version
1.8.2-15. So I open a command prompt (on windows xp) and type "ruby".
After typing "ruby" i type,
puts "Hello world!"
....but I dont see Hello world! printed out. Am I missing something, am
I doing something wrong? I happened to try pressing Ctrl+Z to exit
ruby (..forgive me I am coming from Python)...and then I saw "hello
world!" printed out....but that doesn't seem right.
Instead of typing "ruby", type "irb" (stands for interactive ruby).
Curt
···
On 11/16/05, py <codecraig@gmail.com> wrote:
I downloaded and installed Ruby via the One-Click installer, version
1.8.2-15. So I open a command prompt (on windows xp) and type "ruby".
After typing "ruby" i type,
puts "Hello world!"
....but I dont see Hello world! printed out. Am I missing something, am
I doing something wrong? I happened to try pressing Ctrl+Z to exit
ruby (..forgive me I am coming from Python)...and then I saw "hello
world!" printed out....but that doesn't seem right.
I see what's going on here. Ruby with no args reads from the standard input
(in this case the terminal) and runs whatever it gets as soon as the input
stream terminates, which is the "^D", and not your enter key. If you were to
use this technique, you would have to tye "ruby" again to execute something
else.
IRB executes and the enter key and then waits for another line to execute.
This is, obviously, much more convenient!
Curt
···
On 11/16/05, py <codecraig@gmail.com> wrote:
Matthew Desmarais wrote:
> No kidding! Where did it say that?
Well for the One-Click installer for Windows, version 1.8.2-15 includes
ProgrammingRuby.chm (under the ruby directory).
In that help file look under Preface/Running Ruby/Interactive Ruby
....copied/pasted below...
[excerpt]
"Interactive Ruby
The easiest way to run Ruby interactively is simply to type ``ruby'' at
the shell prompt.
I see what's going on here. Ruby with no args reads from the standard input
(in this case the terminal) and runs whatever it gets as soon as the input
stream terminates, which is the "^D", and not your enter key. If you were to
use this technique, you would have to tye "ruby" again to execute something
else.
IRB executes and the enter key and then waits for another line to execute.
This is, obviously, much more convenient!
Curt
Yup. I was gonna respond with this as well, but I'll just second Curt instead.
Get to know irb if you're experimenting with Ruby. It's just the kind of thing
that a person coming from Python expects to see when they run ruby with
no arguments.
Well, almost. irb doesn't play dumb when you want to quit.