home *** CD-ROM | disk | FTP | other *** search
/ Explore the World of Soft…ids, Adults, Educational / RocelcoInc-ExploreTheWorldOfSoftware-KidsAdultsEducational-Vol2-Shareware.iso / educate / disk061 / start.bas (.txt) < prev    next >
Encoding:
GW-BASIC  |  1986-08-10  |  1.2 KB  |  35 lines

  1. 10  '                    C O P Y R I T E . B A S          8/10/86
  2. 20  '
  3. 30  '    COPYRITE displays the copyright message for Amy's First Primer.
  4. 40  '
  5. 50  SCREEN 0 : WIDTH 40 : DEF SEG : KEY OFF : CLS
  6. 60  LOCATE 1,12 : COLOR 9,0 : PRINT "AMY'S FIRST PRIMER"
  7. 70  COLOR 5,0 : LOCATE 3,1
  8. 80  PRINT "This disk is dedicated to Amy, whose "
  9. 90  PRINT "birthday came on September 8. It helped"
  10. 100  PRINT "her wait another year for kindergarten"
  11. 110  PRINT
  12. 120  PRINT "We hope this disk will help your child"
  13. 130  PRINT "too. It's recommended for children 4-8."
  14. 140  PRINT "These programs should help to learn the"
  15. 150  PRINT "alphabet and the numbers 1 through 9."
  16. 160  PRINT "They will also help build skills in "
  17. 170  PRINT "problem solving and pattern matching."
  18. 180  PRINT : COLOR 5,0
  19. 190  PRINT "If you find the disk helpful,we request";
  20. 200  PRINT "that you send $15.00 to:"
  21. 210  COLOR 14,0
  22. 220  PRINT "             Rob Robinson "
  23. 230  PRINT "          523 Albany Ave. NE"
  24. 240  PRINT "        Orange City, IA  51041"
  25. 250  COLOR 5,0
  26. 260  PRINT "In appreciation, we'll send you a free"
  27. 270  PRINT "copy of the DRAW program used to create"
  28. 280  PRINT "the graphics for this disk."
  29. 290  PRINT : COLOR 9,0
  30. 300  PRINT "      Press any key to continue.";
  31. 310  PRINT : COLOR 4,0
  32. 320  PRINT " copyright 1985, Computing Specialties";
  33. 330  WHILE INKEY$="" : WEND
  34. 340  RUN "menu"
  35.