Program {
    items: [
        GlobalVariable(
            GlobalVariable {
                decl_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 66,
                        end: 69,
                    },
                },
                identifier: Token {
                    kind: Identifier,
                    location: Location {
                        start: 70,
                        end: 71,
                    },
                },
                colon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 71,
                        end: 72,
                    },
                },
                type_token: TypeHint {
                    type_name: Token {
                        kind: Identifier,
                        location: Location {
                            start: 73,
                            end: 76,
                        },
                    },
                },
                equals_token: Token {
                    kind: Symbol,
                    location: Location {
                        start: 77,
                        end: 78,
                    },
                },
                initializer: Expression {
                    expression: Literal {
                        value: Literal {
                            value: Integer(
                                10,
                            ),
                            location: Location {
                                start: 79,
                                end: 81,
                            },
                        },
                    },
                },
                semicolon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 81,
                        end: 82,
                    },
                },
            },
        ),
        GlobalVariable(
            GlobalVariable {
                decl_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 83,
                        end: 86,
                    },
                },
                identifier: Token {
                    kind: Identifier,
                    location: Location {
                        start: 87,
                        end: 88,
                    },
                },
                colon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 88,
                        end: 89,
                    },
                },
                type_token: TypeHint {
                    type_name: Token {
                        kind: Identifier,
                        location: Location {
                            start: 90,
                            end: 93,
                        },
                    },
                },
                equals_token: Token {
                    kind: Symbol,
                    location: Location {
                        start: 94,
                        end: 95,
                    },
                },
                initializer: Expression {
                    expression: Literal {
                        value: Literal {
                            value: Integer(
                                32,
                            ),
                            location: Location {
                                start: 96,
                                end: 98,
                            },
                        },
                    },
                },
                semicolon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 98,
                        end: 99,
                    },
                },
            },
        ),
        GlobalVariable(
            GlobalVariable {
                decl_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 100,
                        end: 103,
                    },
                },
                identifier: Token {
                    kind: Identifier,
                    location: Location {
                        start: 104,
                        end: 105,
                    },
                },
                colon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 105,
                        end: 106,
                    },
                },
                type_token: TypeHint {
                    type_name: Token {
                        kind: Identifier,
                        location: Location {
                            start: 107,
                            end: 110,
                        },
                    },
                },
                equals_token: Token {
                    kind: Symbol,
                    location: Location {
                        start: 111,
                        end: 112,
                    },
                },
                initializer: Expression {
                    expression: FunctionCall {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 113,
                                end: 126,
                            },
                        },
                        arguments: [
                            Variable {
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 127,
                                        end: 128,
                                    },
                                },
                            },
                            Variable {
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 130,
                                        end: 131,
                                    },
                                },
                            },
                        ],
                    },
                },
                semicolon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 132,
                        end: 133,
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 135,
                        end: 137,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 138,
                        end: 151,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 151,
                        end: 152,
                    },
                },
                arguments: [
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 152,
                                end: 153,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 153,
                                end: 154,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 155,
                                    end: 158,
                                },
                            },
                        },
                    },
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 160,
                                end: 161,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 161,
                                end: 162,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 163,
                                    end: 166,
                                },
                            },
                        },
                    },
                ],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 166,
                        end: 167,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 168,
                                end: 170,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 171,
                                    end: 174,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 175,
                            end: 176,
                        },
                    },
                    statements: [
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 181,
                                        end: 187,
                                    },
                                },
                                expression: BinaryOperator {
                                    name: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 190,
                                            end: 191,
                                        },
                                    },
                                    operands: [
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 188,
                                                    end: 189,
                                                },
                                            },
                                        },
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 192,
                                                    end: 193,
                                                },
                                            },
                                        },
                                    ],
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 193,
                                        end: 194,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 195,
                            end: 196,
                        },
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 198,
                        end: 200,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 201,
                        end: 207,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 207,
                        end: 208,
                    },
                },
                arguments: [],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 208,
                        end: 209,
                    },
                },
                return_decl: None,
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 210,
                            end: 211,
                        },
                    },
                    statements: [
                        Expression {
                            expression: Assignment {
                                left_expr: Name {
                                    variable: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 216,
                                            end: 217,
                                        },
                                    },
                                },
                                operator: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 218,
                                        end: 219,
                                    },
                                },
                                right_expr: BinaryOperator {
                                    name: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 222,
                                            end: 223,
                                        },
                                    },
                                    operands: [
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 220,
                                                    end: 221,
                                                },
                                            },
                                        },
                                        Literal {
                                            value: Literal {
                                                value: Integer(
                                                    2,
                                                ),
                                                location: Location {
                                                    start: 224,
                                                    end: 225,
                                                },
                                            },
                                        },
                                    ],
                                },
                            },
                            semicolon: Token {
                                kind: Symbol,
                                location: Location {
                                    start: 225,
                                    end: 226,
                                },
                            },
                        },
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 227,
                            end: 228,
                        },
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 230,
                        end: 232,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 233,
                        end: 240,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 240,
                        end: 241,
                    },
                },
                arguments: [],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 241,
                        end: 242,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 243,
                                end: 245,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 246,
                                    end: 249,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 250,
                            end: 251,
                        },
                    },
                    statements: [
                        Expression {
                            expression: Expression {
                                expression: FunctionCall {
                                    name: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 256,
                                            end: 262,
                                        },
                                    },
                                    arguments: [],
                                },
                            },
                            semicolon: Token {
                                kind: Symbol,
                                location: Location {
                                    start: 264,
                                    end: 265,
                                },
                            },
                        },
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 270,
                                        end: 276,
                                    },
                                },
                                expression: BinaryOperator {
                                    name: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 279,
                                            end: 280,
                                        },
                                    },
                                    operands: [
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 277,
                                                    end: 278,
                                                },
                                            },
                                        },
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 281,
                                                    end: 282,
                                                },
                                            },
                                        },
                                    ],
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 282,
                                        end: 283,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 284,
                            end: 285,
                        },
                    },
                },
            },
        ),
    ],
}