Chervil is a toy Lisp interpreter written in Ruby
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

string_spec.rb 157B

1234567
  1. module Chervil::AST
  2. RSpec.describe String do
  3. it 'evaluates' do
  4. expect(String.new("hello world").evaluate).to eq("hello world")
  5. end
  6. end
  7. end