buzz-language / buzz

👨‍🚀 buzz, A small/lightweight statically typed scripting language
https://buzz-lang.dev
MIT License
1.22k stars 34 forks source link

Blocks #105

Closed giann closed 8 months ago

giann commented 1 year ago

Can be used to have a temporary lexical scope:

<{
    const str message = "Hello";

    print(message);
}

<{
    const str message = "Bye";

    print(message);
}

Could provide a result value:

var value = <{
    | ...

    out result;
}