buzz-language / buzz

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

object.toString() #87

Closed giann closed 11 months ago

giann commented 1 year ago
object A {
    fun toString() > str -> "hello";
}

print("{A{}}"); | -> "hello";