public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
* #t and #f now default to primitive types
@ 2015-04-03  1:27 Per Bothner
  2015-04-03  5:07 ` Jamison Hope
  0 siblings, 1 reply; 4+ messages in thread
From: Per Bothner @ 2015-04-03  1:27 UTC (permalink / raw)
  To: Kawa mailing list

The literals #t and #f are now treated as having primitive boolean types,
rather than java.lang.Boolean type.  That is the return type of:

     (define (neg x) (if (>= x 0) #f #t))

is boolean rather than java.lang.Boolean.

Of course you can specify Boolean explicitly if you want:

     (define (neg x) ::java.lang.Boolean (if (>= x 0) #f #t))
-- 
	--Per Bothner
per@bothner.com   http://per.bothner.com/

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

end of thread, other threads:[~2015-04-04  0:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-03  1:27 #t and #f now default to primitive types Per Bothner
2015-04-03  5:07 ` Jamison Hope
2015-04-03  5:47   ` Per Bothner
2015-04-04  0:32   ` Per Bothner

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).