86 lines
1.8 KiB
Scheme
86 lines
1.8 KiB
Scheme
#lang scheme/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 PLT Scheme: "
|
|
"Yavuz Arkun, "
|
|
"Ian Barland, "
|
|
"Eli Barzilay, "
|
|
"Gann Bierner, "
|
|
"Filipe Cabecinhas, "
|
|
"Richard Cleis, "
|
|
"John Clements, "
|
|
"Richard Cobbe, "
|
|
"Greg Cooper, "
|
|
"Ryan Culpepper, "
|
|
"Carl Eastlund, "
|
|
"Moy Easwaran, "
|
|
"Will Farr, "
|
|
"Matthias Felleisen, "
|
|
"Robby Findler, "
|
|
"Kathi Fisler, "
|
|
"Cormac Flanagan, "
|
|
"Matthew Flatt, "
|
|
"Sebastian Good, "
|
|
"Paul Graunke, "
|
|
"Kathy Gray, "
|
|
"Dan Grossman, "
|
|
"Dave Gurnell, "
|
|
"Bruce Hauman, "
|
|
"Dave Herman, "
|
|
"Geoffrey S. Knauth, "
|
|
"Mark Krentel, "
|
|
"Shriram Krishnamurthi, "
|
|
"Mario Latendresse, "
|
|
"Guillaume Marceau, "
|
|
"Jacob Matthews, "
|
|
"Jay McCarthy, "
|
|
"Mike T. McHenry, "
|
|
"Philippe Meunier, "
|
|
"Scott Owens, "
|
|
"Jamie Raymond, "
|
|
"Grant Rettke, "
|
|
"Paul Schlie, "
|
|
"Dorai Sitaram, "
|
|
"Mike Sperber, "
|
|
"Paul Steckler, "
|
|
"Jens Axel Søgaard, "
|
|
"Francisco Solsona, "
|
|
"Sam Tobin-Hochstadt, "
|
|
"Neil W. Van Dyke, "
|
|
"David Van Horn, "
|
|
"Anton van Straaten, "
|
|
"Dale Vaillancourt, "
|
|
"Dimitris Vyzovitis, "
|
|
"Stephanie Weirich, "
|
|
"Noel Welsh, "
|
|
"Adam Wick, "
|
|
"Danny Yoo, "
|
|
"and "
|
|
"ChongKai Zhu."))
|
|
|
|
(define (get-translating-acks)
|
|
(string-append
|
|
"Thanks to "
|
|
"ChongKai Zhu, "
|
|
"Ian Barland, "
|
|
"Biep Durieux, "
|
|
"Tim Hanson, "
|
|
"Chihiro Kuraya, "
|
|
"Philippe Meunier, "
|
|
"Jens Axel Søgaard, "
|
|
"Francisco Solsona, "
|
|
"Mike Sperber, "
|
|
"Reini Urban, "
|
|
"and "
|
|
"Paolo Zoppetti "
|
|
"for their help translating DrScheme's GUI to other languages."))
|