Prims - Implement color, label, label-color, size
[clnl] / src / main / base.lisp
1 (in-package #:clnl)
2
3 (defvar *model-package* (find-package :cl-user)
4  "*MODEL-PACKAGE*
5
6 VALUE TYPE:
7
8   a package
9
10 INITIAL VALUE:
11
12   The common-lisp-user package
13
14 DESCRIPTION:
15
16   *MODEL-PACKAGE* is used for interning symbols as a NetLogo code
17   gets compiled.
18
19   Any local symbols are interned in this package, for use either
20   by other code, or in order to have all symbols interned in the
21   same placakge.  This is also the package in which a model should
22   be run, whether by clnl code or independently.")