Files
harbour-core/harbour/tests/working/fileio.prg
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

11 lines
151 B
Plaintext

// Testing Harbour file io features
function Main()
local h := FCreate( "test.txt" )
FWrite( h, "This is a test" )
FClose( h )
return nil