Questions tagged [zig]
For code written in the Zig programming language.
3 questions
2votes
1answer
33views
Zig: Basic map and movement logic
I'm interested about choice of types for storing coordinates; since the type for indexing an array is usize, that is what I chose. I feel something might be wrong ...
3votes
0answers
85views
My First Zig Library: SuperZIG IO 🚀 (Input/Output Handling Library)
I’ve recently completed my very first library in Zig, SuperZIG IO, designed to simplify input and output handling. The library provides utilities for console input/output, event listening (like key ...
3votes
1answer
84views
Autocompletion trie for English words in zig
I am trying to write a program that creates a Trie from a list of all English words, and then when run provides completions for a given prefix. Basically for each node I allocate a list of 255 null ...