Currently I'm working with the Nice programming language. But I don't find any information about working with files in this language.
If there'd be anybody who can help me with it, I'd really appreciate it.
Asked
Active
Viewed 24 times
-1

Holger Just
- 52,918
- 14
- 115
- 123
1 Answers
0
The language documentation (towards the bottom) provides an example for file access by interfacing with Java:
import java.io.*;
{
String s;
...
java.io.Writer w = new FileWriter(s);
w.write("Hello world");
w.close();
}
It seems that currently, about all file interfaces are useable through the Java interface only.

Holger Just
- 52,918
- 14
- 115
- 123