...
string
Scroll pagebreak |
---|
Examples
Code Block | ||
---|---|---|
| ||
string $token; |
...
int $fileID; |
...
// Open a sample text file |
...
$fileID = `fileOpen "c:/samplefile.txt" "r"`; |
...
// Keep reading in tokens from the file |
...
while( `isEndOfFile $fileID` == false ) |
...
{ |
...
$token = `readToken $fileID`; |
...
// Do something with token |
...
print $token; |
...
} |
Additional information
Related commands
...