turbo-editors/turbo-golopublic Fork 0
v1.0.0
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.

📦 Turbo Golo d710c1b · on v1.0.0 · k33g · 16h ago
hello.golo · 6 lines · 140 BText Blame HistoryRaw
1
2
3
4
5
6
module demo.Hello

# The smallest Golo program: a module, a function, a greeting.
function main = |args| {
  println("Hello, Golo! 👋")
}