8 lines
185 B
Bash
8 lines
185 B
Bash
|
#!/bin/sh
|
||
|
sbcl --eval "(progn
|
||
|
(compile-file \"ltk\")
|
||
|
(load \"ltk\")
|
||
|
(compile-file \"hello-world\")
|
||
|
(load \"hello-world\")
|
||
|
(save-lisp-and-die \"hello-world.core\"))"
|