home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
03-04.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-09-30
|
334 b
|
25 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
NewMode = FGbestmode(80,25,1)
IF NewMode < 0 THEN
PRINT "This program requires ";
PRINT "an 80-column display."
STOP
END IF
FGsetmode NewMode
FGcursor 0
FGsetcolor 15
FGtext "Hello, world.", 13
FGwaitkey
FGsetmode OldMode
FGreset
END