-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
OJddJO edited this page Nov 8, 2024
·
2 revisions
To install WordLanguage, just download the latest release here and you're good to go.
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
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!