mers/TODO.md
Mark 50928cca1d [no version bump yet] better and safer stdlib impl
only transformed configs/with_string so far,
but other configs/* should follow soon.
also, this will help with implementing
new stdlib functions in the future.
2024-07-02 22:04:42 +02:00

19 lines
192 B
Markdown

# IN CODE
rm mers_lib/src/program/configs/util.rs
# Objects
```
o := {
c: 12
x: 5.0
y: 3.2
coords: o -> o.c
println: o -> "aaa".println
}
{ println: println } := o
o.println
```