On Tuesday, 7 May 2019 at 15:13:05 UTC, Andrea Fontana wrote:

import std;
void main()
{
  std.file.write("/tmp/test", "hello");
}

How should I fix this?

import std;
import file = std.file;
void main()
{
  file.write("/tmp/test", "hello");
}

Reply via email to