Hello World in Zig
Every programming journey starts with Hello World. Let’s write our first Zig program.
The Code
Create a file named hello.zig:
| |
Every programming journey starts with Hello World. Let’s write our first Zig program.
Create a file named hello.zig:
| |
Zig is a systems programming language with a static, strong type system that prefers being explicit over being clever. Every binding is either const (immutable) or var (mutable), every numeric …
Operators are the verbs of a programming language — they describe what to do with the values your variables hold. Because Zig is a systems language with a “no hidden control flow” …
Read more →Every programming language eventually runs into the same wall: the programmer knows something at write time that the language cannot express directly. How to serialize a thousand different types …
Read more →The history of systems programming is, in part, a long procession of people standing up to announce that they had built a better C++.
They weren’t wrong. Many of them had built something better …
Read more →Every programming language is, at its core, a written argument. An argument that the languages which came before failed at something important — something worth spending years of your life to fix. …
Read more →Showing 1–6 of 6 posts (page 1 of 1)