X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=clnl;a=blobdiff_plain;f=src%2Fmain%2Fpackage.lisp;h=dcebaf8eae291ab63b8b9b6393d0cdf1214eff53;hp=e745926300fda5b61e2fec84726ff2604e0f55ce;hb=c49ca54ae5a11563aeca0cf01b4fb0b6e181befa;hpb=d348277157351985ea9eff0c005490d4ad9e5b05 diff --git a/src/main/package.lisp b/src/main/package.lisp index e745926..dcebaf8 100644 --- a/src/main/package.lisp +++ b/src/main/package.lisp @@ -89,3 +89,14 @@ components.")) The main NetLogo interface for interacting with the program. Since CLNL is a command line interface program with a view for display purposes only, this is where all the features that the traditional NetLogo UI lives.")) + +(defpackage #:clnl-model + (:use :common-lisp :cl-charms/low-level) + (:export :read-from-nlogo) + (:documentation + "CLNL Model + +The representation, parsing, and serializing of NetLogo model files, including +all of the sections, and subsections held within. This package houses not only +the code to read and write .nlogo files, but also the living state of the model +as clnl runs."))