Barliman

Fork me on GitHub

Editor

(define ,A (lambda ,B ,C))

Examples

1

(append '() '5)
5

2

(append '(a) '6)
'(a . 6)

3

(append '(e f) '(g h))
'(e f g h)

4

5

6

Run