I'm learning D and having some difficulty with a standard library import.
import std.stdio;
void main(string[] args) {
fwritefln(stderr, "foo");
}
Compiling with "gdc foo.d" produces the following error
foo.d:4: error: undefined identifier fwritefln, did you mean template writefln(T...)(T args)?
I can't figure out what I'm doing wrong. Most library imports I've tried, I've had no difficulty with, but for some reason, this "fwritefln" is a problem.