OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / ALPHALINUX5 / util / ALPHALINUX5 / bin / irb
1 #!/usr/bin/env ruby
2 #
3 #   irb.rb - intaractive ruby
4 #       $Release Version: 0.7.3 $
5 #       $Revision: 1.1.1.1 $
6 #       $Date: 2002/02/01 06:35:05 $
7 #       by Keiju ISHITSUKA(keiju@ishitsuka.com)
8 #
9
10 require "irb"
11
12 if __FILE__ == $0
13   IRB.start(__FILE__)
14 else
15   # check -e option
16   if /^-e$/ =~ $0
17     IRB.start(__FILE__)
18   else
19     IRB.initialize(__FILE__)
20   end
21 end