home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
sourcecode
/
routines
/
text_intro.amos
/
text_intro.amosSourceCode
Wrap
AMOS Source Code
|
1990-07-25
|
2KB
|
62 lines
Screen Open 1,640,200,16,Hires
Cls 11 : Curs Off : Hide : Flash Off
Box 4,4 To 636,196 : Box 7,7 To 633,193
Cls 0,86,35 To 560,160
Wait 20
Proc FIRST : Rem ------------------ Procedures Called
Proc SECOND
Proc LAST
End
Rem ----> End of Main Program <----
Rem * Text Window Procs *
Procedure FIRST
Paper 0 : Pen 5
Print At(15,6);"AMOS is am amazing new Basic specially written"
Print At(15,);"for the Amiga by Francois Lionet. "
Print At(15,9);"It is a new concept making complex, fast machine code "
Print At(15,);"methods accessible and fun to use. Graphics can be"
Print At(15,);"used with ease and without hours of poring over"
Print At(15,);"difficult to understand Manuals."
Print At(15,);""
Print At(15,);"Pictures from De Luxe Paint, Sprites and Bobs"
Print At(15,);"can all be used in all kinds of Creative ways."
Print At(15,);" "
Centre "* * * *"
CLICK
PAUSE
End Proc
Procedure SECOND
Cls 10,86,35 To 560,160
Paper 10 : Pen 2
Print At(15,6);" The Editor is one of the best and makes all"
Print At(15,);"tasks enjoyable. Structured programming is"
Print At(15,9);"simple to do and Procedures can be Folded to"
Print At(15,);"take up only one line. Moving from one part"
Print At(15,);"of a program is very slick and easy to do using"
Print At(15,);"either the scroll bars or easily remembered key "
Print At(15,);"combinations."
Print At(15,);""
Print At(15,);"AMOS has 500 commands and handles with the familiar "
Print At(15,);"feel of the well-known Microsoft Basics. "
Print At(16,);""
Centre "* * * *"
PAUSE
Cls 0
End Proc
Procedure LAST
Cls 11,86,35 To 560,160
Paper 11 : Pen 2
Print At(32,11);Border$("End of Program.",1)
PAUSE
End Proc
Rem * Utility Procs *
Rem --------------------------
Procedure PAUSE
While Mouse Click=0 : Wend
End Proc
Rem --------------------------
Procedure CLICK
Paper 11 : Pen 1
Print At(27,22);"Click Mouse to continue."
End Proc
Rem --------------------------