Chervil is a toy Lisp interpreter written in Ruby
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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