-->
One liner to get the latest Zig compiler using curl and jq
curl
jq
curl -s -L $(curl -s https://ziglang.org/download/index.json | jq -r '.master."x86_64-linux"."tarball"') | tar x -J -C . && mv zig-linux* ~/.zig
zig cc compiler is just awesome!
zig cc