X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fpackage.lisp;h=89a0ab3c82c61fc575006009fa97944488d9beec;hb=393d2cd66721b93bed149613ceb7ee4fdac408c2;hp=36fbafa07e6bed7a289638771baf739330c2f216;hpb=399b297b01fe363c6ea8c2108de5df82c2ba3921;p=clnl diff --git a/src/main/package.lisp b/src/main/package.lisp index 36fbafa..89a0ab3 100644 --- a/src/main/package.lisp +++ b/src/main/package.lisp @@ -33,7 +33,7 @@ other things.")) (defpackage #:clnl-random (:use :common-lisp) (:shadow #:export) - (:export #:export #:set-seed #:next-int #:next-double) + (:export #:export #:set-seed #:next-int #:next-double #:next-long) (:documentation "Wrapper around mt19937. @@ -64,17 +64,36 @@ into an ast that can be transpiled later.")) (defpackage #:clnl-nvm (:use :common-lisp) - (:export #:export-world #:create-world #:current-state + (:shadow #:random #:count) + (:export #:export-world #:create-world #:current-state #:with-stop-handler ; API as used by transpiled NetLogo programs + #:agent-value #:ask + #:clear-all + #:count #:create-turtles #:die + #:display + #:hatch + #:of #:forward #:lookup-color + #:one-of + #:patches + #:reset-ticks + #:random #:random-float + #:random-xcor + #:random-ycor + #:set-default-shape + #:setxy #:show + #:stop #:turtles - #:turn-right #:turn-left) + #:tick + #:ticks + #:turn-right #:turn-left + #:with) (:documentation "CLNL NVM