Comment by boffinAudio

2 days ago

Very cute language ..

     match x {
        is table {
            print(indent_this + "{")
            for pair in pairs(x) {
                write(indent + "   " + to_string(pair.key) + ": ") 
                pretty_print_internal(pair.value, indent + "   ", false)
            }
            print(indent + "}")
        }

.. okay, you got my attention (long-time Lua fan) .. will have to give this some workbench time and learn it ..