home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
DOOR
/
CONC_003.ZIP
/
TUTOR.ARJ
/
TUTOR3.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-07-15
|
2KB
|
66 lines
{$A+,B-,I-,Q-,R-,S-}
{$F+} { Force Far calls }
{$X+} { Extended Syntax }
USES
DoorKit, IO, Scripts,
{ Color systems }
_ANSI, { . . . . . . . . . . . . . . . . . . . ANSI support }
_ATCodes, { . . . . . . . . . . PCBoard and WildCat at-colors }
_AVATAR, { . . . . . . . . . . . . . . . . . . AVATAR support }
_HexPipe, { . . . . . . . . . . . . . . . . . . HexPipe system }
_LORDCLR, { . . . . . . LORD [Legend of the Red Dragon] colors }
_RACOLOR, { . . . . . . . . . . . . . . RemoteAccess ^K colors }
{ Extra features }
_Chat, { . . . . . . . . . . . . . . . . . . Cool chat-mode }
_Control, { . . . . . . . . . . . . . . . . . . Control codes }
_Errata, { . . . . . . . . . . . . . Run-time error handling }
_IO, { . . . . . . Various I/O script commands (i.e. CLS) }
_Macros, { . . . . . . . . . . . . . . . . . . . Text Macros }
_Params, { . . . . . Sysop-definable command-line parameters }
_Release, { . . . . . . . . . . . . . . . Time-slice releaser }
_SO, { . . . . Allows use of WriteLn via SO virtual file }
_Status, { . . . . . . . . . . . Sysop-definable status lines }
{ I/O drivers }
_FOSSIL, { . . . . . . . . . . . . . . . . . . FOSSIL support }
_CRT; { . . . . . . . . Local I/O using Borland's CRT unit }
VAR
Message : STRING;
BEGIN
{ Setup door }
ProgName := 'Tutorial Series';
Version := '1.0';
Copyright := 'Copyright (c) 1996 The Easter Bunny ∙ All Rights Reserved';
Script('Init');
{ Setup a cool hello-world program (the classic initiation for all
budding programmers around the world). }
Message := '|08─|07─|0F─|07 Hello World! |0F─|07─|08─|07~|';
Write(SO,Message); { Send the string with processing }
SO_RawString(Message); { Display the string without processing }
{ Notice that we are using "writing" to the SO "text file". This
feature is provided by the _SO module. Any text written to SO will
actually be sent through the I/O engine. }
END.