• v0.3.2 79ee784a5b

    TudbuT released this 2024-09-08 12:56:21 +02:00 | 12 commits to main since this release

    Previously, the syntax for prefix notation was highly annoying:

    Range:new <{ 0 5 }
        :iter
        :map <{ { | 5 * } }
        :foreach <{ { | _str println } }
    

    It is now much more pleasent:

    Range:new<0 5>
        :iter
        :map<{ | 5 * }>
        :foreach<{ | _str println }>
    
    Downloads