Closed ideal-knee closed 8 years ago
In the existing example, (defstate conn :start create-conn) simply binds conn to the function create-conn, rather than the result of calling the function.
(defstate conn :start create-conn)
conn
create-conn
sure, makes sense, thanks!
In the existing example,
(defstate conn :start create-conn)
simply bindsconn
to the functioncreate-conn
, rather than the result of calling the function.