unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Guile 2.0 interpretation vs compilation
@ 2014-10-05 11:03 Marko Rauhamaa
  2014-10-06  4:22 ` Mark H Weaver
  0 siblings, 1 reply; 6+ messages in thread
From: Marko Rauhamaa @ 2014-10-05 11:03 UTC (permalink / raw)
  To: guile-user


Consider this program:

===begin test.scm=======================================================
(define (hello) #f)
(format #t "~S\n" (procedure-name hello))

(define (xyz)
  (define (hello) #f)
  (format #t "~S\n" (procedure-name hello)))

(xyz)
===end test.scm=========================================================

If I run:

   $ guile --no-auto-compile test.scm
   hello
   #f
   $ guile --no-auto-compile test.scm
   hello
   #f
   $ guile test.scm
   ;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
   ;;;       or pass the --no-auto-compile argument to disable.
   [...]
   hello
   hello
   $ guile test.scm
   hello
   hello
   $ guile --no-auto-compile test.scm
   hello
   hello
   # $ guile -v
   guile (GNU Guile) 2.0.11
   [...]


Is this a bug or expected behavior?


Marko



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-10-06 19:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-05 11:03 Guile 2.0 interpretation vs compilation Marko Rauhamaa
2014-10-06  4:22 ` Mark H Weaver
2014-10-06  6:33   ` Marko Rauhamaa
2014-10-06  6:52     ` Mark H Weaver
2014-10-06  7:58     ` Mark H Weaver
2014-10-06 19:05       ` Marko Rauhamaa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).