3 This is an experiment at creating an alternate implementation of NetLogo in Common Lisp.
5 See the [wiki](https://github.com/frankduncan/clnl/wiki) for more information.
9 If you'd like to run it from source, you're going to need a few things:
11 * A copy of the clnl source (either from the [releases page](https://github.com/frankduncan/clnl/releases) or via cloning)
12 * An implementation of sbcl with threads enabled
13 * The following common lisp libraries (included in [deps/common-lisp](deps/common-lisp) folder)
27 [bin/nl](bin/nl) and [bin/run.lisp](bin/run.lisp) have been added for convenience to run the netlogo instance. It boots up the ncurses command line with an opengl view. Not very many commands are implemented, but it should alert you to that. A good test is
38 In order to run on OSX, you may have to build your own sbcl instance with threads enabled. See [bin/buildosxexec.sh](bin/buildosxexec.sh) for how it's done when releasing/testing.
42 In order to run on Windows, you will need to install a copy of 32bit sbcl with threads enabled, as well as putting a copy of freeglut and pdcurses in that directory. See [bin/buildwindowsexec.sh](bin/buildwindowsexec.sh) for how it's done when releasing/testing.
44 # Running in a common lisp instance
46 If you'd like to run using your own sbcl instance, you can attach the clnl.asd file wherever you link asd files, and then use:
49 (asdf:load-system :clnl)
53 # Using standalone executables
55 See the [releases page](https://github.com/frankduncan/clnl/releases) for the most recent release.