Skip to content

Getting Started

cyxigo edited this page Jul 12, 2026 · 5 revisions

Getting Started

This little guide will help you install Wi and print your very first "Hello, World!"

Installation

Currently, Wi is available only on Windows.

  1. Download the interpreter from the latest release
  2. Put it anywhere you want and add it to PATH
  3. Open cmd.exe (or your favorite terminal) and type:
wi --version
  1. If you see wi 1.0.0, installation is complete.

Hello World

Create a new file and name it hello.wi, then, in file, type simply:

print("Hello, World!");

Run it with:

wi hello.wi

You should see:

Hello, World!

Congratulations! Wi is installed and working.

Clone this wiki locally