Files
harbour-core/harbour/tests/working/cdow.prg
1999-09-21 19:42:02 +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