13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
; age: 26
; pw: "swordfish"))
; (if (user? stacy) (user.name stacy))
; (define oldstacy (user stacy age: 69))
; (user.name oldstacy)
; (user.age oldstacy)
(include "lisp-macro.scm")
(import (chicken pretty-print)
(chicken keyword))
(begin-for-syntax (import (chicken keyword)))
; i cannot believe this worked
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
; age: 26
; pw: "swordfish"))
; (if (user? stacy) (user.name stacy))
; (define oldstacy (user stacy age: 69))
; (user.name oldstacy)
; (user.age oldstacy)
;(include "lisp-macro.scm")
(import (chicken pretty-print)
(chicken keyword))
(begin-for-syntax (import (chicken keyword)))
; i cannot believe this worked
|