Files
harbour-core/harbour/tests/langapi.prg
2000-04-14 20:08:33 +00:00

34 lines
420 B
Plaintext

/*
* $Id$
*/
// ; Donated to the public domain by Victor Szakats <info@szelvesz.hu>
REQUEST HB_LANG_HU852
func main()
// hb_langselect( "EN" )
? NationMsg( 1 )
? CMonth( Date() )
? CDOW( Date() )
? "---------"
hb_langSelect( "HU852" )
? NationMsg( 1 )
? CMonth( Date() )
? CDOW( Date() )
? "---------"
hb_langSelect( "NOTHERE" )
? NationMsg( 1 )
? CMonth( Date() )
? CDOW( Date() )
? "---------"
return nil