Files
harbour-core/contrib/hbnf/tests/xbox.prg
Przemysław Czerpak 96ca3fe470 2014-01-21 20:41 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* Makefile
  * config/*
  * contrib/*
  * doc/*
  * extras/*
  * include/*
  * lib/*
  * package/*
  * src/*
  * tests/*
  * utils/*
    * removed empty lines left after removed '$' + 'Id' + '$' identifiers
2014-01-21 20:41:05 +01:00

23 lines
645 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