std.printf("%d\n", 1); std.printf("%s\n", os.platform);
import std from "std"; import os from "os"; std.printf("%d\n", 1); std.printf("%s\n", os.platform);
$ ./default_modules SyntaxError: export 'default' in module 'std' is ambiguous
import * as std from "std"; import * as os from "os"; std.printf("%d\n", 1); std.printf("%s\n", os.platform)