1
0
forked from ground/ground-old

Update Readme

This commit is contained in:
2026-03-02 10:14:35 +11:00
parent 5577679ded
commit ce75981c58

View File

@@ -121,3 +121,10 @@ Supported instructions so far:
* print
* println
* end
## Closures
So I decided to add closures to Ground. Here's how they work:
* When you define a function, it makes a copy of the scope it's currently in. Variables are statically captured
* Use those variables in functions. Closure achieved!