Marius Vollmer <[EMAIL PROTECTED]> writes:

> Also (and don't try this at home kids):
>
>   (define 'x (* x x))
>   '2
>   => 4

Obviously, I did try this at home.  :-)  Actually, you meant something
like:

  guile> (define x 2)
  guile> (define 'x 3)
  guile> x
  2
  guile> 'x
  3

Right?  The example you gave doesn't produce anything funny unless `x'
was previously defined.

Thanks,
Ludovic.


_______________________________________________
Guile-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/guile-user

Reply via email to