mntmn / interim

The Interim Operating System
1.24k stars 56 forks source link

Remove trailing space in fn representation #17

Closed wasamasa closed 5 years ago

wasamasa commented 7 years ago

Before:

interim> (def foo (fn x y 42))
(fn x y  42)

After:

interim> (def foo (fn x y 42))
(fn x y 42)