Idorobots / spartan

A small Lisp dialect that serves me as a test bed for programming language features.
MIT License
14 stars 3 forks source link

Lambda & let eta-redution. #139

Closed Idorobots closed 3 years ago

Idorobots commented 3 years ago

There's a tonne of these generated:

(let ((__value1 ...))
  __value1)

(lambda (__env1 __value1 __cont1) 
  (__cont1 __value1))

Should be cleaned up.