Why programming languages matter
…
Learning Zig
Figuring out the package manager
Currently this article seems to be the definitive guide. But too noisy for now.
Good sources:
- v0.11 release notes.
- This Ziggit response.
What to do if you want to write a library
Init your project
$ zig init-library
Add a build.zig.zon file
.{
.name = "your library name",
.version = "0.0.3",
}
Testing
See this.
Web Assembly
Read this as a general introduction.
Then, go through these resources: