[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

problem with Hello World test, window shut instantly

Blackthirteen Blackthirteen

2/2/2009 9:48:00 AM

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 via http://www.ruby-....

4 Answers

Yaser Sulaiman

2/2/2009 10:53:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

On Mon, Feb 2, 2009 at 12:48 PM, Blackthirteen Blackthirteen <
karvboy@hotmail.com> 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

Reth11

2/2/2009 12:18:00 PM

0

On Feb 2, 3:48 am, Blackthirteen Blackthirteen <karv...@hotmail.com>
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-....

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

pjb

2/2/2009 12:35:00 PM

0

Blackthirteen Blackthirteen <karvboy@hotmail.com> 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/Introdu...

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...

--
__Pascal Bourguignon__

Julian Leviston

2/3/2009 2:34:00 AM

0

It's because he's using windows and running it without opening a =20
command line first

Sent from my iPhone

On 02/02/2009, at 11:34 PM, pjb@informatimago.com (Pascal J. =20
Bourguignon) wrote:

> Blackthirteen Blackthirteen <karvboy@hotmail.com> writes:
>
>> Hello, I=81fm new to ruby. So I started with the famous Hello World p=20=

>> rogram
>> after installing Ruby.
>>
>> When I save a program as test.rb and I run it, the window open but =20=

>> 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/Introdu...
>
> 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...
>
> --=20
> __Pascal Bourguignon__
>