Problem with Hello World test, window shut instantly

Hello, I’m new to ruby. So I started with the famous Hello World program
after installing Ruby.

When I save a program as test.rb and I run it, the window open but shut
very quickly. How can I see my results once I run the program I made?

On Mon, Feb 2, 2009 at 12:48 PM, Blackthirteen B. <
[email protected]> wrote:

When I save a program as test.rb and I run it, the window open but shut
very quickly. How can I see my results once I run the program I made?

A quick fix: add “gets” to the end of your script. This will make your
program wait for your input. Once you hit Enter it will terminate.

Or you can just open the command line interface, navigate to the
directory
containing your script, and then enter its name (“test.rb” in this case)
to
execute it.

HTH,
Yaser

On Feb 2, 3:48 am, Blackthirteen B. [email protected]
wrote:

Hello, I’m new to ruby. So I started with the famous Hello World program
after installing Ruby.

When I save a program as test.rb and I run it, the window open but shut
very quickly. How can I see my results once I run the program I made?

Posted viahttp://www.ruby-forum.com/.

Greetings,
I use windows. I started out with the same problem. I did start/run
and cmd. Using the Ruby in the command prompt can be a pain. The
documentation or whatever does not hint that it comes with a program/
text editor. If you go to Start, All Programs, Ruby*, and click on
SciTE. This editor is my favorite. I have tried a few others (eText
Editor and Komomdo Editor) on Windows platform and just didn’t like
them.

Cheer

It’s because he’s using windows and running it without opening a
command line first

Sent from my iPhone

On 02/02/2009, at 11:34 PM, [email protected] (Pascal J.

Blackthirteen B. [email protected] writes:

Hello, I’m new to ruby. So I started with the famous Hello World program
after installing Ruby.

When I save a program as test.rb and I run it, the window open but shut
very quickly. How can I see my results once I run the program I made?

I would use emacs, both as an editor and as a shell window in which to
run ruby programs. Emacs can also be used to drive an interactive
ruby session (irb).
http://www.gnu.org/software/emacs/windows/Introduction.html

Launch emacs, Read the tutorial (Control-h t).

Then you can launch a shell with: M-x shell RET
and type there your commands, such as: ruby hw.rb

For interactive ruby: M-x run-ruby RET

You can edit your files: C-x C-f hw.rb RET

etc…