betaveros / noulith

*slaps roof of [programming language]* this bad boy can fit so much [syntax sugar] into it
1.13k stars 20 forks source link

add `into` keyword documentation #13

Closed tom-huntington closed 1 year ago

tom-huntington commented 1 year ago

The rest of your documentation is quite complete. Here's a toy example

noulith> print! for(i <- 65 to 70) yield [i, chr(i)] into dict;
{67: "C", 66: "B", 69: "E", 65: "A", 68: "D", 70: "F"}