class V8::CLI::Shell

def exit(status = 0)

def exit(status = 0)
  Kernel.exit(status)
end

def help(*args)

def help(*args)
  <<-HELP
int(msg)
print msg to STDOUT    
  
it(status = 0)
exit the shell
also: quit()
    
alrb(source)
evaluate some ruby source
LP
end

def print(string)

def print(string)
  puts string
end

def to_s

def to_s
  "[object Shell]"
end