mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
f1d338194e
* Introduce the concept of packages. Closes #3 * Add support for error notes. * Introduce `@import` and `@c_import` builtin functions and remove the `import` and `c_import` top level declarations. * Introduce the `use` top level declaration. * Add `--check-unused` parameter to perform semantic analysis and codegen on all top level declarations, not just exported ones and ones referenced by exported ones. * Delete the root export node and add `--library` argument.
5 lines
149 B
Zig
5 lines
149 B
Zig
pub const Rand = @import("rand.zig").Rand;
|
|
pub const io = @import("io.zig");
|
|
pub const os = @import("os.zig");
|
|
pub const math = @import("math.zig");
|