|
|
|
|
|
by himujjal
775 days ago
|
|
This. Writing a parser in Zig is so simple. Just allocate once, and then start writing your parser. One allocator for parser, one for scanner. One for type allocation. Keep them all for semantic analysis. Write the output renderer (binary/language). Deallocate. In this whole process, it makes it so easy to not think about memory anymore. Just enjoy writing your program. |
|