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 |
- module Chervil::AST
- RSpec.describe Number do
- it 'evaluates' do
- expect(Number.new(5.0).evaluate).to eq(5.0)
- end
- end
- end
|