Highload-fun / platform

33 stars 0 forks source link

Task 6 error? #31

Open zara6502 opened 1 week ago

zara6502 commented 1 week ago

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.