Getting Started

From OnixOS
Revision as of 09:49, 11 August 2024 by Tedaryum (talk | contribs) (Created page with "First get <code>olang(.exe)</code> file or <code>go get -v gitlab.com/olanguage/olang</code> and run <code>olang(.exe) (-r) <filename> (-d=true [debug mode])</code> Thats it. Create file with example.ola; <code>output("Hello Galaxy!")</code> Run file with olang; <code>olang example.ola</code> Result; <code>"Hello Galaxy!"</code> Thats all.")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

First get olang(.exe) file or go get -v gitlab.com/olanguage/olang and run olang(.exe) (-r) <filename> (-d=true [debug mode])

Thats it.

Create file with example.ola;

output("Hello Galaxy!")

Run file with olang;

olang example.ola

Result;

"Hello Galaxy!"

Thats all.