My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 59 attachment: FileReadFails.hx (357 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class FileReadFails
{
public static function main()
{
var inputWVFile : String = cpp.Sys.args()[0];

if (inputWVFile == null)
{
inputWVFile = "input.wv";
}

trace("File to read is " + inputWVFile);

var fstream = cpp.io.File.read(inputWVFile,true);

trace("End of main");
}
}
Powered by Google Project Hosting