#!/bin/sh
set -e

VERSION=$(zig version 2>/dev/null)

echo "${VERSION}" | grep -Eq "^0\.16(\.|$)" || {
    exit 1
}
