src/main.lisp @ cfc55aea8bee

Initial commit
author Steve Losh <steve@stevelosh.com>
date Sun, 18 Apr 2021 13:25:26 -0400
parents (none)
children ae5d604f978f
(in-package :dark)

(defun toplevel ()
  (write-line "Hello, world!"))

(defun build ()
  (sb-ext:save-lisp-and-die "build/dark"
    :executable t
    :save-runtime-options t
    :toplevel #'dark:toplevel))