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

21 lines
284 B
Plaintext

//
// $Id$
//
// test of file function
function main
if file("filexist.prg") == .t.
qout("file exist test works")
else
qout("file exist test fails")
endif
if file("filxxist.prg") == .f.
qout("file exist test works")
else
qout("file exist test fails")
endif
return nil