home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 December (Special)
/
PCWorld_2005-12_Special_cd.bin
/
Bezpecnost
/
lsti
/
lsti.exe
/
framework-2.5.exe
/
irb
< prev
next >
Wrap
Text File
|
2005-01-18
|
346b
|
22 lines
#!/usr/bin/ruby
#
# irb.rb - intaractive ruby
# $Release Version: 0.7.3 $
# $Revision: 1.2 $
# $Date: 2002/11/19 02:00:18 $
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
require "irb"
if __FILE__ == $0
IRB.start(__FILE__)
else
# check -e option
if /^-e$/ =~ $0
IRB.start(__FILE__)
else
IRB.setup(__FILE__)
end
end