(defmethod dump-object ((o string)) o)
+(defmethod dump-object ((o (eql t))) "true")
+(defmethod dump-object ((o (eql nil))) "false")
+
(defun current-state ()
"CURRENT-STATE => WORLD-STATE
*prims*))
; We count on the parser to handle arguemnts for us, when collating things.
+(defprim := :reporter cl:equalp)
(defprim :ask :command clnl-nvm:ask)
(defprim :crt :command clnl-nvm:create-turtles)
(defprim :fd :command clnl-nvm:forward)
(defsimplereportertest "Random 1" "random-float 5" "4.244088516651127"
"17D1BF7FF7BF2C7F3F5F7DD7CF67CFF2772CFFFC")
+
+(defsimplereportertest "= 1" "5 = 5" "true"
+ "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B")
+
+(defsimplereportertest "= 2" "5 = 4" "false"
+ "E1DE30F072D785E0D0B59F28B0F7853E3D3E0D8B")