Files
harbour-core/harbour/tests/cdow.prg
1999-10-04 18:46:41 +00:00

17 lines
330 B
Plaintext

//
// $Id$
//
function main()
local cNewLine := HB_OSNewLine()
OutStd( cMonth( date() ) + cNewLine )
OutStd( cMonth( date() + 31 ) + cNewLine )
OutStd( cMonth( date() + 60 ) + cNewLine )
OutStd( cDow( date() ) + cNewLine )
OutStd( cDow( date() + 6 ) + cNewLine )
OutStd( cDow( date() + 7 ) + cNewLine )
return nil