
An extflonum is like a flonum, but with 80-bit precision and not a number in the sense of `number?': only operations such as `extfl+' work on extflonums, and only on platforms where extflonums can be implemented by hardware without interefering with flonums (i.e., on platforms where SSE instructions are used for double-precision floats). [Patch provided by Michael Filonenko and revised by Matthew.] The compiler tracks information about bindings that are known to hold extflonums, but the JIT does not yet exploit this information to unbox them (except as intermediate results).
100 lines
2.1 KiB
Racket
100 lines
2.1 KiB
Racket
#lang racket/base
|
|
|
|
(provide get-general-acks
|
|
get-translating-acks
|
|
get-authors)
|
|
|
|
(define (get-authors)
|
|
(get-general-acks))
|
|
|
|
(define (get-general-acks)
|
|
(string-append
|
|
"The following individuals contributed to the implementation"
|
|
" and documentation of Racket: "
|
|
"Yavuz Arkun, "
|
|
"Ian Barland, "
|
|
"Eli Barzilay, "
|
|
"Gann Bierner, "
|
|
"Stephen Bloch, "
|
|
"Filipe Cabecinhas, "
|
|
"Richard Cleis, "
|
|
"John Clements, "
|
|
"Richard Cobbe, "
|
|
"Greg Cooper, "
|
|
"Ryan Culpepper, "
|
|
"Carl Eastlund, "
|
|
"Moy Easwaran, "
|
|
"Will Farr, "
|
|
"Matthias Felleisen, "
|
|
"Michael Filonenko, "
|
|
"Robby Findler, "
|
|
"Kathi Fisler, "
|
|
"Cormac Flanagan, "
|
|
"Matthew Flatt, "
|
|
"Sebastian Good, "
|
|
"Paul Graunke, "
|
|
"Kathy Gray, "
|
|
"Dan Grossman, "
|
|
"Arjun Guha, "
|
|
"Dave Gurnell, "
|
|
"Bruce Hauman, "
|
|
"Dave Herman, "
|
|
"Blake Johnson, "
|
|
"Casey Klein, "
|
|
"Geoffrey S. Knauth, "
|
|
"Mark Krentel, "
|
|
"Shriram Krishnamurthi, "
|
|
"Mario Latendresse, "
|
|
"Guillaume Marceau, "
|
|
"Jacob Matthews, "
|
|
"Jay McCarthy, "
|
|
"Mike T. McHenry, "
|
|
"Philippe Meunier, "
|
|
"Scott Owens, "
|
|
"Jon Rafkind, "
|
|
"Jamie Raymond, "
|
|
"Grant Rettke, "
|
|
"Paul Schlie, "
|
|
"Dorai Sitaram, "
|
|
"Francisco Solsona, "
|
|
"Mike Sperber, "
|
|
"Vincent St-Amour, "
|
|
"Paul Steckler, "
|
|
"Stevie Strickland, "
|
|
"James Swaine, "
|
|
"Jens Axel Søgaard, "
|
|
"Sam Tobin-Hochstadt, "
|
|
"Neil Van Dyke, "
|
|
"David Van Horn, "
|
|
"Anton van Straaten, "
|
|
"Asumu Takikawa, "
|
|
"Kevin Tew, "
|
|
"Neil Toronto, "
|
|
"Dale Vaillancourt, "
|
|
"Dimitris Vyzovitis, "
|
|
"Stephanie Weirich, "
|
|
"Noel Welsh, "
|
|
"Adam Wick, "
|
|
"Danny Yoo, "
|
|
"and "
|
|
"ChongKai Zhu."))
|
|
|
|
(define (get-translating-acks)
|
|
(string-append
|
|
"Thanks to "
|
|
"Ian Barland, "
|
|
"Biep Durieux, "
|
|
"Tim Hanson, "
|
|
"Chihiro Kuraya, "
|
|
"Philippe Meunier, "
|
|
"Irina Mintiy, "
|
|
"Sergey Semerikov, "
|
|
"Francisco Solsona, "
|
|
"Mike Sperber, "
|
|
"Jens Axel Søgaard, "
|
|
"Reini Urban, "
|
|
"ChongKai Zhu, "
|
|
"and "
|
|
"Paolo Zoppetti "
|
|
"for their help translating DrRacket's GUI to other languages."))
|