diff options
author | Leah Neukirchen <leah@vuxu.org> | 2022-10-27 21:03:09 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2022-10-27 21:03:09 +0200 |
commit | 387547558464ef9fa4c659fc5603d55d2f5eb488 (patch) | |
tree | 4c343bf1d9dc78026e80fa98435c01e5d9539ed8 /mew.scm | |
parent | 08332e26821ad3b44aa2dad2bcf13fbd4c5eae68 (diff) | |
download | mew-387547558464ef9fa4c659fc5603d55d2f5eb488.tar.gz mew-387547558464ef9fa4c659fc5603d55d2f5eb488.tar.xz mew-387547558464ef9fa4c659fc5603d55d2f5eb488.zip |
fix whitespace
Diffstat (limited to 'mew.scm')
-rw-r--r-- | mew.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mew.scm b/mew.scm index 223ea2e..e56d4ea 100644 --- a/mew.scm +++ b/mew.scm @@ -78,7 +78,7 @@ (define (inc i) (+ i 1)) - + (define (dec i) (- i 1)) @@ -98,8 +98,8 @@ (unless (null? (cdr args)) (display " ")) (apply prn (cdr args))))) - - (define-syntax def + + (define-syntax def (syntax-rules () ((_ . rest) (define . rest)))) |