v0.4.1 is released!
Inheritance is supported now! Just in case you are not familiar with this mustache feature, check this example:
let s = "{{<test}}{{$foo}}hello world{{/foo}}"{{/test}}"
let c = newContext(partials = {"test": "{{$foo}}default{{/foo}}"}.toTable())
s.render(c)
# "hello world"