Differences From
Artifact [46b6c9a575]:
18 18 ; _Bool (((*(*const (((v)[])))(char, unsigned
19 19 ; __int128_t)))[5])
20 20 ; (as i'm sure you immediately guessed)
21 21 ;
22 22 ; → no dependencies besides the lisp-macro.scm file
23 23 ; bundled with it, and the chicken stdlib.
24 24
25 -(import (chicken process-context))
26 -(import (chicken condition))
27 -(import (chicken pretty-print))
28 -(import (chicken io))
25 +(import (chicken process-context)
26 + (chicken condition)
27 + (chicken pretty-print)
28 + (chicken io))
29 29 (include "../scmlib/lisp-macro.scm")
30 30
31 31 (define (first fst . lst) fst)
32 32
33 33 (: string-reduce (list --> string))
34 34 (: words->string (list --> string))
35 35 (: separate (string list --> string))