Skip to content

Getting Started

cyxigo edited this page Jul 12, 2026 · 5 revisions

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. So what are you waiting for? Start with learning about its syntax!

Clone this wiki locally