Release D 2.086.0

Daniel N no at public.email
Tue May 7 17:29:34 UTC 2019


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");
}


More information about the Digitalmars-d-announce mailing list