Files
harbour-core/contrib/hbnf/tests/xbox.prg
vszakats 9687850865 2013-03-16 02:10 UTC+0100 Viktor Szakats (harbour syenar.net)
* (all files)
    * stripped svn header
    * minor cleanups
    ; use following command to find out the history of files:
       git log
       git log --follow
       git blame
       git annotate
2013-03-16 02:11:42 +01:00

24 lines
646 B
Plaintext

#require "hbnf"
PROCEDURE Main()
LOCAL i
SetColor( "W/B" )
CLS
FOR i := 1 TO 24
@ i, 0 SAY Replicate( "@", 80 )
NEXT
ft_XBox( , , , , , , , "This is a test", "of the XBOX() function" )
ft_XBox( "L", "W", "D", "GR+/R", "W/B", 1, 10, "It is so nice", ;
"to not have to do the messy chore", ;
"of calculating the box size!" )
ft_XBox( , "W", "D", "GR+/R", "W/B", 16, 10, "It is so nice", ;
"to not have to do the messy chore", ;
"of calculating the box size!", ;
"Even though this line is way too long, and is in fact more than 80 characters long, if you care to check!" )
RETURN