Skip to content

Download

๐ŸชŸ Download for Windows

Installer ยท No dependencies

๐Ÿง Download for Linux

tar.gz ยท luz + ray binaries

Windows โ€” What's included

  • Full Luz interpreter (luz.exe)
  • Native compiler (luzc.exe) โ€” compiles .luz files to standalone Windows executables
  • TCC (Tiny C Compiler, ~100 KB) โ€” bundled, used by luzc internally
  • ray package manager (ray.exe)
  • luz, luzc, and ray added to your system PATH automatically
  • Standard libraries pre-installed (luz-math, luz-random, luz-io, luz-system)
  • No Python required, no clang, no LLVM needed

The installer sets the LUZ_HOME environment variable so luzc can locate TCC and the runtime automatically.

Linux โ€” Setup after download

tar -xzf luz-*-linux.tar.gz
sudo mv luz ray /usr/local/bin/
luz program.luz

After installing

luz program.luz        # run a file (interpreter)
luz                    # open the interactive REPL
luzc program.luz       # compile to native executable
luzc program.luz --run # compile and run immediately
ray install user/pkg   # install a package

Older releases

Loading...