Skip to content

Getting Started

cyxigo edited this page Jul 15, 2026 · 5 revisions

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

Installation

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 Copyright (C) 2026 cyxigo, installation is complete.

Linux

  1. Download the interpreter from the latest release
  2. Put it in /usr/bin
  3. Open your favorite terminal and type:
wi --version
  1. If you see Wi 1.0.0 Copyright (C) 2026 cyxigo, 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