Files
harbour-core/harbour/tests/working/filexist.prg

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