Really basic Ruby question

P

paul.denlinger

I'm learning Ruby from the Learn to Program tutorial by Chris Pine.

On http://pine.fm/LearnToProgram/?Chapter=01, he mentions saving a
calc.rb file after typing in "puts 1 + 2" in my text editor , then
going to the command line and typing "ruby calc.rb", and getting the
results "3" returned.

I am not getting this result; instead I'm getting a message that the
file or directory can't be found. I'm using the built-in Scintilla text
editor which comes with Ruby.

How do I get the command line to see the saved file?

Thanks in advance for your assistance.
 
1

13

Hi,

Looks like you are using Scite editor. If so, you can press F5 and see
program output directly in Scite.
 
F

Farrel Lifson

Have you saved the program to file called 'calc.rb' and run 'ruby
calc.rb' from the directory it's in?
 
J

James Britt

I'm learning Ruby from the Learn to Program tutorial by Chris Pine.

On http://pine.fm/LearnToProgram/?Chapter=01, he mentions saving a
calc.rb file after typing in "puts 1 + 2" in my text editor , then
going to the command line and typing "ruby calc.rb", and getting the
results "3" returned.

I am not getting this result; instead I'm getting a message that the
file or directory can't be found. I'm using the built-in Scintilla text
editor which comes with Ruby.

How do I get the command line to see the saved file?

You may be opening the command prompt in some default home directory,
which is not the same place where you saved the Ruby file.

When you save the file in Scintilla, make sure you save it to c:\calc.rb

Then, when you get a command prompt, go to the C: drive, then change to
the root drive:

c:\> cd \

Then try running ruby calc.rb.


If that works, all is good.

You will probably be able to run it by just typing the file name and
hitting Enter, too, if the Ruby installation set up the filetype
execution association for you.

Now, I don't generally advocate saving your files to the root of the C:
drive, so decide where you want to place the files, and then just figure
out how to navigate there once you have a command prompt.


--
James Britt

"In Ruby, no one cares who your parents were, all they care
about is if you know what you are talking about."
- Logan Capaldo
 
B

Benjohn Barnes

Thank you. It works!

If you are learning, you might want to try the interactive ruby
interpreter: irb. That will save you writing things, saving them, and
trying them. For simple tests it is very quick. To use it, go to your
command line and type:

irb

And then you're be able to type "puts 1 + 2" and see the result
directly.

Have fun anyway!

Cheers,
Benjohn
 

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

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,012
Latest member
RoxanneDzm

Latest Threads

Top