You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
286 B
Scheme
16 lines
286 B
Scheme
27 years ago
|
(for-each (lambda (x)
|
||
|
(printf "loading ~s...~n" x)
|
||
|
(flush-output)
|
||
|
(load-relative x))
|
||
|
'("setup.ss"
|
||
|
"debug.ss"
|
||
|
"2darray.ss"
|
||
|
"coord.ss"
|
||
|
"mesh.ss"
|
||
|
"utils.ss"
|
||
|
"ui.ss"
|
||
|
"pager.ss"
|
||
|
"engine.ss"
|
||
|
"main.ss"))
|
||
|
(printf "done loading~n")
|