grg.sl 943 B

123456789101112131415161718192021222324252627282930313233343536
  1. %==========================================================================%
  2. % GRG 3.2 Startup File (C) 1988-2000 Vadim V. Zhytnikov %
  3. %==========================================================================%
  4. % This file is distributed without any warranty. You may modify it but you %
  5. % are not allowed to remove author's name and/or distribute modified file. %
  6. %==========================================================================%
  7. (global '(![version!]))
  8. (setq ![version!] "This is GRG 3.2 release 6 (July 16, 2000) ..." )
  9. % Loading modules ...
  10. (evload '(
  11. grgdecl
  12. grggeom
  13. grggrav
  14. grginit
  15. grgclass
  16. grgcomm
  17. grgcoper
  18. grgmain
  19. grgmater
  20. grgprin
  21. grgproc
  22. grgtrans
  23. grgcfg
  24. ))
  25. (matrix nil)
  26. % Starting GRG ...
  27. (cond (![autostart!] (grg))
  28. (t(progn (terpri) (prin2 "Type ``grg;'' to start GRG ...") (terpri))))
  29. %==========================================================================%