From: Graham S. <fo...@pa...> - 2002-09-11 00:11:32
|
Given this file: ;; or.scm (define (test-or) (or #f 1 2)) If I compile or.scm to a .class file, I get this behavior from jscheme.REPL: > (or.load) #null > (test-or) #t > (load "or.scm") #t > (test-or) 1 I think the (load "or.scm") behavior is correct -- (or) should return the first true value, not #t. Is that right? Thanks, --g |