Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 794 Bytes

File metadata and controls

41 lines (26 loc) · 794 Bytes

Zig: cosa, come e perche

Note

Contenuto in Italiano 🇮🇹

Evento | Slides

Questo progetto usa Zig 0.13

Eseguire i tests

Per vedere in azione il codice mostrato durante il talk:

zig build test
zig test src/syntax.zig
zig test src/comptime.zig

E' possibile (compilare ed) eseguire tests in isolamento aggiungendo il parametro --test-filter=<test-pattern, esempio:

zig build test --  "defer"

ooppure:

zig test syntax.zig --test-filter=defer

Eseguire la build del progetto

zig build