Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 274 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 274 Bytes

Zig Malloc

Purpose

To try out memory allocation in Zig, when storing strings the normal way does not cut it.

Background

Without memory allocation for the Dialog struct, the text in DialogText gets lost in stack(?) hell.

Memory allocating solves this problem.