added null operator to (picrin control list)

This commit is contained in:
Yuichi Nishiwaki 2014-06-28 12:07:56 +09:00
parent f37c88c174
commit c26fc144f3
1 changed files with 4 additions and 1 deletions

View File

@ -15,4 +15,7 @@
(define (yield x) (define (yield x)
(list x)) (list x))
(export for in yield)) (define (null . x)
'())
(export for in yield null))