Skip to content

Getting Started

OJddJO edited this page Nov 8, 2024 · 2 revisions

Installation

To install WordLanguage, just download the latest release here and you're good to go.

Usage

To run a WordLanguage program, simply run the word executable with the path to the program file as an argument. Like this:

./word.exe path/to/program.w

Creating your first program

Here's a simple "Hello, World!" program in WordLanguage:

print "Hello, World!"

Save this code to a file named hello.w and run it with the word executable:

./word.exe hello.w

You should see the output Hello, World! printed to the console.

Now you're ready to start writing your own WordLanguage programs!


Documentation