/usr/share/racket/collects/acks/acks.rkt is in racket-common 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | #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: "
"Claire Alvis, "
"Yavuz Arkun, "
"Ian Barland, "
"Eli Barzilay, "
"Gann Bierner, "
"Stephen Bloch, "
"Matthew Butterick, "
"Filipe Cabecinhas, "
"Stephen Chang, "
"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, "
"Gustavo Massaccesi, "
"Jacob Matthews, "
"Jay McCarthy, "
"Mike T. McHenry, "
"Philippe Meunier, "
"Scott Owens, "
"David T. Pierson, "
"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."))
|