buzz-language / buzz

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

Docblock #50

Closed giann closed 2 years ago

giann commented 2 years ago

Keep docblocks in AST so we can reuse it to generate documentation:

|| This is a cool utility object
object MyObject {
    || Says hello
    || @param name To whom you say hello
    fun sayHello(str name) > void -> print("hello {name}"),
}