dmulholl / pyro

A dynamically-typed, garbage-collected scripting language.
https://www.dmulholl.com/docs/pyro/master/
BSD Zero Clause License
6 stars 0 forks source link

Add support for 'with' blocks #2

Closed dmulholl closed 1 year ago

dmulholl commented 1 year ago

Adds support for with blocks, e.g.

with file = $file("foobar.txt") {
    echo file:read_string();
}