mirror of
https://github.com/ziglang/zig.git
synced 2026-01-01 02:53:23 +00:00
Before, if you did something like: ``` const hi1 = "hi"; const hi2 = hi1; ``` This would create the "hi" data twice in the built object. But since the value is const we don't have to duplicate the data, now we take advantage of this fact. closes #336