https://highload.fun/tasks/6
To work with local files, I always poll the server to get an example of what comes to STDIN. For this task, I use the following C code#:
string s;
while ((s = Console.ReadLine()) != null)
Console.Error.WriteLine(s);
For other tasks, this gives me the necessary data on STDERR, which I later work with. But for this task I get an error:
"build main: cannot load encoding/json: malformed module path "encoding/json": missing dot in first path element"
It seems to me that this error is not related to me and my code.
https://highload.fun/tasks/6 To work with local files, I always poll the server to get an example of what comes to STDIN. For this task, I use the following C code#:
For other tasks, this gives me the necessary data on STDERR, which I later work with. But for this task I get an error: "build main: cannot load encoding/json: malformed module path "encoding/json": missing dot in first path element" It seems to me that this error is not related to me and my code.