summaryrefslogtreecommitdiff
path: root/Lisp/init.lisp
blob: 72d616ff8f455a69202a8aad56ef10b5df501d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(in-package #:mulk.objective-cl)

(initialise-runtime)

(eval-when (:load-toplevel)
  (unless (boundp '+nil+)
    (defconstant +nil+
      (make-instance 'id :pointer (objcl-get-nil))))
  (unless (boundp '+yes+)
    (defconstant +yes+ (objcl-get-yes)))
  (unless (boundp '+no+)
    (defconstant +no+ (objcl-get-no))))