turbo-editors/turbo-golopublic Fork 0
v1.0.1
Commits
Clone
git clone https://git.rickub.com/turbo-editors/turbo-golo.git
git clone ssh://git@rickub.com/turbo-editors/turbo-golo.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

README.md · 17 lines · 953 Bmarkdown Blame HistoryRaw
📦 Turbo Golo d710c1b k33g 15h ago1# Demos
2
3Three Golo programs to open in Turbo Golo. Each runs under `golo`, and the tests pass under `golo --test`:
4
5| Directory | What it shows | Run it |
6| --- | --- | --- |
7| `hello/` | The smallest program: a module, a function, a greeting | `golo demos/hello/hello.golo` |
8| `shapes/` | Structs, a union with two variants, augmentations, closures and a comprehension — with a `*_test.golo` beside it | `golo demos/shapes/shapes.golo` then `golo --test demos/shapes` |
9| `syntax-tour/` | One of everything the scanner colours, each line of `tour.golo` running; `lexer-only.golo` beside it holds the tokens the lexer reads and the parser refuses, coloured but not runnable | `golo demos/syntax-tour/tour.golo` |
10
11From the repository root:
12
13```bash
14turbo-golo demos/shapes/shapes.golo
15```
16
17Open one, press `F9` for the project tree, and `Alt-G` for the Golo menu. Create the project's tools file from that menu and **Run** asks which script to run.