变量和数据类型

变量声明

声明变量可以使用 varconst, 如下:

var a : u8 = undefined;
const b = "Hello World!";

函数

zig 函数参数是常量。