In Haxe, is there any cross-language method for reading lines from a file (that works with all Haxe target languages?)
Here's the method stub that I'm trying to implement:
static function readLine(fileName, lineNumber){
//now how can I get this method to work with all Haxe target languages?
}
It might be possible to find a relevant method in the Sys class, but I haven't yet found it.