mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-22 16:31:07 +00:00
28 lines
566 B
Plaintext
28 lines
566 B
Plaintext
NEW
|
||
PREFIX
|
||
AUTO 4,1
|
||
#!/BIN/SH
|
||
#
|
||
# This script tests the standard functions defined in MAKEFUNCS
|
||
# that are used by multiple MAKE scripts
|
||
#
|
||
# Load Functions File
|
||
#
|
||
. MAKEFUNCS
|
||
#
|
||
# Test CS (ClearScreen Function)
|
||
#
|
||
CALL CS
|
||
CALL TBOX "This is the Title"
|
||
CALL STATUSLINE "Loading Functions..."
|
||
CALL PRINTXY 10 10 "Hello World at 10 10"
|
||
CALL PRINTXY 18 1 " "
|
||
ECHO
|
||
CALL INVERSE "Inverse where cursor is"
|
||
ECHO "\nNow normal"
|
||
CALL INVERSEXY 15 15 "Inverse Now at 15 15"
|
||
CALL PRINTXY 18 1 " "
|
||
ECHO
|
||
MAN
|
||
TEXT /MAKE/USR/SHARE/MAKE/TESTFUNCS
|