gruggers 0.5.3

rust implementation of the grug language
Documentation
[
    {
        "assignment": {
            "type": "NUMBER_EXPR",
            "value": "42"
        },
        "name": "foo",
        "type": "GLOBAL_VARIABLE",
        "variable_type": "number"
    },
    {
        "assignment": {
            "type": "NUMBER_EXPR",
            "value": "69"
        },
        "name": "bar",
        "type": "GLOBAL_VARIABLE",
        "variable_type": "number"
    },
    {
        "type": "GLOBAL_EMPTY_LINE"
    },
    {
        "name": "on_a",
        "statements": [
            {
                "assignment": {
                    "left_expr": {
                        "str": "foo",
                        "type": "IDENTIFIER_EXPR"
                    },
                    "operator": "PLUS_TOKEN",
                    "right_expr": {
                        "type": "NUMBER_EXPR",
                        "value": "1"
                    },
                    "type": "BINARY_EXPR"
                },
                "name": "foo",
                "type": "VARIABLE_STATEMENT"
            },
            {
                "type": "EMPTY_LINE_STATEMENT"
            },
            {
                "arguments": [
                    {
                        "str": "foo",
                        "type": "IDENTIFIER_EXPR"
                    },
                    {
                        "str": "bar",
                        "type": "IDENTIFIER_EXPR"
                    }
                ],
                "name": "max",
                "type": "CALL_STATEMENT"
            }
        ],
        "type": "GLOBAL_ON_FN"
    }
]