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

12 行
191 B

require "./src/crisp/interpreter"
if ARGV.empty?
begin
Crisp::Interpreter.new.run
rescue e
puts e
exit 1
end
else
Crisp::Interpreter.new(ARGV[1..-1]).run(ARGV.first)
end