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