A fork of Crisp for HARP
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
191 B

  1. require "./src/crisp/interpreter"
  2. if ARGV.empty?
  3. begin
  4. Crisp::Interpreter.new.run
  5. rescue e
  6. puts e
  7. exit 1
  8. end
  9. else
  10. Crisp::Interpreter.new(ARGV[1..-1]).run(ARGV.first)
  11. end