From: philip Date: 2007-05-13T22:35:04+09:00 Subject: Re: compare between languages On Sun, 13 May 2007 05:52:56 -0700, xymip wrote: > HI, > Using terminal with ruby I encountered a problem > with the puts command. Here is the track: > > Last login: Sun May 13 05:42:08 on console > Welcome to Darwin! > [stefan's-computer-2:~] stivi% echo hello world > hello world > [stefan's-computer-2:~] stivi% ruby -v > ruby 1.8.2 (2004-12-25) [universal-darwin8.0] > [stefan's-computer-2:~] stivi% puts 1+2 > tcsh: puts: Command not found. > > Has the command changed? > > Thanks in advance > Stefan Hi Stefan, you should give irb a chance: philip@jupiter:~$ irb irb(main):001:0> puts "hello world" hello world => nil irb(main):002:0>