What I wrote is equivalent to the zig declaration. Google says:
const my_module = @import("my_module.zig"); This allows you to access pub (public) declarations from my_module.zig through the my_module identifier.
Yes, but how is that equivalent?
Zig:
const std = @import("std"); pub fn main() !void { // std is like a namespace here std.debug.print("Hello, World!\n", .{}); }
import std.stdio; void main() { // no namespace here, "writeln" and everything else in "std.stdio" is imported writeln("Hello, World!"); }
import io = std.stdio; void main() { io.writeln("Hello, World!"); }
Yes, but how is that equivalent?
Zig:
D: The closest to Zig in D would be: