vow-datetime
vow-datetime builds YYYY-MM-DD strings from year, month, and day integers. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-datetimevpm installQuick start
Section titled “Quick start”import vdt from vow_datetime
fn main(caps: Caps) -> int { print vdt.iso_prefix(2026, 7, 5); return 0;}Run tests
Section titled “Run tests”cd vow-libs/vow-datetime && vow test tests/datetime.vow