// releases
Downloads
Get the Tape compiler and language reference. Extract, build, run.
T navigate here A focus P select platform E download
Tape 2.0.0
May 2026 tape-2.0.0-win64.zip
ZIP
Compiler, standard library, runtime DLLs, and examples. Windows x64.
tape-2.0.0-linux.tar.gz
TAR.GZ
Compiler, standard library, runtime shared libraries, and examples. Linux x86_64.
tape-2.0.0-macos.tar.gz
TAR.GZ
Compiler, standard library, runtime dylibs, and examples. macOS x86_64.
tape-2.0.0-macos-arm64.tar.gz
TAR.GZ
Compiler, standard library, runtime dylibs, and examples. macOS ARM64 (Apple Silicon).
Quick start
terminal
# Extract and enter the release folder
unzip tape-2.0.0-win64.zip
cd tape-2.0.0-win64
# Build the included demo
.\tape.exe build examples\widget_demo.tape -I "stdlib" -o widget_demo.exe
.\widget_demo.exe
# Build your own program
.\tape.exe build hello.tape -I "stdlib" -o hello.exe What's in the archive
tape.exe Compiler and build tool
tapert100.dll Runtime library (memory, I/O, args)
gfx.dll 2D graphics library
image.dll Image codec library (BMP, PNG, JPEG, HUVA)
uwm.dll Window manager (Win32)
stdlib/ Standard library (io, str, mem, math, gfx, ui, widgets)
image/ Image codec sources (PNG, BMP, JPEG, HUVA)
rt/win64/ Runtime source (platform bindings)
examples/ Example programs (widget_demo, counter, canvas, etc.)