A2osX/MAKE/TESTFUNCS.txt

31 lines
584 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
ECHO $?
PAUSE
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