# File lib/rongo.rb, line 269
  def rongo
    if ARGV.size >= 1
      @@rongo_batch_mode = 1
      load convert_to_good_ruby(ARGV[0])
    else
      print "Entering interactive mode\n* "
      while s = gets
        s= convert_to_good_ruby_string(s)
        eval s
        print "* "
      end
    end
  end