Install
Run Dewy on your machine.
The packaged installation supports Linux x86-64 with glibc 2.34 or newer. It installs the verified native Dewy/µDewy compiler pair and its matching library.
Install the current toolchain
Early software: inspect the installer before running it in an environment you care about. Dewy has not reached a stable release.
shell
curl -fsSL https://dewy-lang.org/install.sh | bash
The installer writes to ~/.dewy and adds that directory to your shell path. The installed compilers run without Python. Use dewy update to update the pair and library together.
dewy hello.dewy
udewy hello.udewy
Run from a checkout
The native compiler is a development version with some hosted-parity gaps. The hosted compiler remains available from a checkout with Python 3.14 or newer.
git clone https://github.com/david-andrew/dewy-lang.git
cd dewy-lang
python -m dewy dewy/tests/hello.dewy
python -m udewy udewy/tests/test_hello.udewy
The compiler writes intermediate source and target artifacts under __dewycache__/. Use -c to compile without running, and --target to select a µDewy backend.