// releases

Downloads

Get the Tape compiler and language reference. Extract, build, run.

T navigate here A focus P select platform E download

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.)