README 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # $Source$
  2. # $State$
  3. # $Revision$
  4. A few notes on the examples
  5. ---------------------------
  6. This directory contains a handful of working example programs that can be
  7. built with the ACK. They're intended as a convenient source of test code
  8. and as a starting point when writing your own programs.
  9. They consist of:
  10. hilo.c ANSI C version of the Hi/Lo game
  11. hilo.b Basic version of the Hi/Lo game
  12. hilo.mod Modula-2 version of the Hi/Lo game
  13. hilo.ocm Occam 1 version of the Hi/Lo game
  14. hilo.p Pascal version of the Hi/Lo game
  15. mandelbrot.c A simple Mandelbrot generator, using floating-point maths
  16. paranoia.c An ancient public domain K&R C adventure game
  17. startrek.c An even more ancient public domain ANSI C game
  18. (uses the FPU for distance calculation)
  19. startrek.doc Manual for above (plus in current directory when running)
  20. Enjoy.
  21. (startrek.c was written by David Ahl and converted to C by Chris Nystrom. See
  22. http://www.cactus.org/%7Enystrom/startrek.html for more info.)
  23. David Given
  24. dg@cowlark.com
  25. 2007-02-25