Loris1123 / RbScheme

Scheme Interpreter written in Ruby
Other
1 stars 0 forks source link

Define functions in functions #17

Closed Loris1123 closed 7 years ago

Loris1123 commented 7 years ago

Not working:

(define (aFunc x y)
  (define (bFunc a b)
    (+ a b))
  (bFunc x y))

define allows only 1 argument as a function body. Should allow * expressions.