Re: [Chicken-users] chicken slime REPL message

2011-01-28 Thread Joe Python
Ah! I was expecting something in the lines of the clojure repl where it echoes the function name and its namespace it lives in. user=> (defn hello [] (println "hi")) #'user/hello On Thu, Jan 27, 2011 at 11:54 AM, David Krentzlin wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash

Re: [Chicken-users] chicken slime REPL message

2011-01-27 Thread David Krentzlin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, yes, this is normal behaviour. What you see is the printable representation of the return value of the define form. As you may have guessed, it has none, so it prints #. Try it with a form that does actually produce a value. cheers david On 27

[Chicken-users] chicken slime REPL message

2011-01-27 Thread Joe Python
Is it normal behaviour to get the '#' message. ; SLIME 2010-01-03 CSI> (define (hello) (display "Hi")) # CSI> ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users