vow-uuid
vow-uuid detects nil UUIDs before persistence — generation via Rand grant lands in v0.2. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-uuidvpm installQuick start
Section titled “Quick start”import vuuid from vow_uuid
fn main(caps: Caps) -> int { if vuuid.is_nil(vuuid.nil()) { return 0; } return 1;}Run tests
Section titled “Run tests”cd vow-libs/vow-uuid && vow test tests/uuid.vow