racket/racket/collects/acks/acks.rkt
Matthew Flatt 67a9889ef7 add "share", move "collects" back out of "lib", move "pkgs"
The "share" directory holds platform-independent files, while
"lib" holds platform-specific files.

In principle, the "collects" directory belongs in "share",
as does "doc". Those directories are put into "share"
by a Unix-style install, but left at top level for an
in-place install.

Packages in installation scope are put in "share" instead
of "lib", and the top-level Makefile puts development links
in "share/devel-pkgs".

The `configure' script now supports `--docdir' and `--collectsdir'.

Changed the version to 5.90.0.1.
2013-07-19 11:52:02 -06:00

83 lines
1.7 KiB
Racket

#lang racket/base
(provide get-general-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, "
"Eric Dobson, "
"Carl Eastlund, "
"Moy Easwaran, "
"Will Farr, "
"Matthias Felleisen, "
"Michael Filonenko, "
"Burke Fetscher, "
"Robby Findler, "
"Kathi Fisler, "
"Cormac Flanagan, "
"Matthew Flatt, "
"Sebastian Good, "
"Paul Graunke, "
"Kathy Gray, "
"Dan Grossman, "
"Arjun Guha, "
"Dave Gurnell, "
"Tobias Hammer, "
"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."))