Program {
    items: [
        ExternFunction(
            ExternalFunction {
                extern_fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 200,
                        end: 206,
                    },
                },
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 207,
                        end: 209,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 210,
                        end: 215,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 215,
                        end: 216,
                    },
                },
                arguments: [
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 216,
                                end: 221,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 221,
                                end: 222,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 223,
                                    end: 226,
                                },
                            },
                        },
                    },
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 228,
                                end: 231,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 231,
                                end: 232,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 233,
                                    end: 236,
                                },
                            },
                        },
                    },
                ],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 236,
                        end: 237,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 238,
                                end: 240,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 241,
                                    end: 245,
                                },
                            },
                        },
                    },
                ),
                semicolon: Token {
                    kind: Symbol,
                    location: Location {
                        start: 245,
                        end: 246,
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 292,
                        end: 294,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 295,
                        end: 304,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 304,
                        end: 305,
                    },
                },
                arguments: [
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 305,
                                end: 310,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 310,
                                end: 311,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 312,
                                    end: 315,
                                },
                            },
                        },
                    },
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 317,
                                end: 320,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 320,
                                end: 321,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 322,
                                    end: 325,
                                },
                            },
                        },
                    },
                ],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 325,
                        end: 326,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 327,
                                end: 329,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 330,
                                    end: 333,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 334,
                            end: 335,
                        },
                    },
                    statements: [
                        VariableDefinition(
                            VariableDefinition {
                                decl_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 340,
                                        end: 343,
                                    },
                                },
                                identifier: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 344,
                                        end: 349,
                                    },
                                },
                                type_token: None,
                                equals_token: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 350,
                                        end: 351,
                                    },
                                },
                                initializer: Literal {
                                    value: Literal {
                                        value: Integer(
                                            0,
                                        ),
                                        location: Location {
                                            start: 352,
                                            end: 353,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 353,
                                        end: 354,
                                    },
                                },
                            },
                        ),
                        For(
                            For {
                                for_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 359,
                                        end: 362,
                                    },
                                },
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 363,
                                        end: 364,
                                    },
                                },
                                var_type: Some(
                                    TypeHint {
                                        type_name: Token {
                                            kind: Identifier,
                                            location: Location {
                                                start: 366,
                                                end: 369,
                                            },
                                        },
                                    },
                                ),
                                in_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 370,
                                        end: 372,
                                    },
                                },
                                iterable: FunctionCall {
                                    name: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 373,
                                            end: 378,
                                        },
                                    },
                                    arguments: [
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 379,
                                                    end: 384,
                                                },
                                            },
                                        },
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 386,
                                                    end: 389,
                                                },
                                            },
                                        },
                                    ],
                                },
                                body: Body {
                                    opening_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 391,
                                            end: 392,
                                        },
                                    },
                                    statements: [
                                        Expression {
                                            expression: Assignment {
                                                left_expr: Name {
                                                    variable: Token {
                                                        kind: Identifier,
                                                        location: Location {
                                                            start: 401,
                                                            end: 406,
                                                        },
                                                    },
                                                },
                                                operator: Token {
                                                    kind: Symbol,
                                                    location: Location {
                                                        start: 407,
                                                        end: 408,
                                                    },
                                                },
                                                right_expr: BinaryOperator {
                                                    name: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 415,
                                                            end: 416,
                                                        },
                                                    },
                                                    operands: [
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 409,
                                                                    end: 414,
                                                                },
                                                            },
                                                        },
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 417,
                                                                    end: 418,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                            },
                                            semicolon: Token {
                                                kind: Symbol,
                                                location: Location {
                                                    start: 418,
                                                    end: 419,
                                                },
                                            },
                                        },
                                    ],
                                    closing_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 424,
                                            end: 425,
                                        },
                                    },
                                },
                            },
                        ),
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 430,
                                        end: 436,
                                    },
                                },
                                expression: Variable {
                                    variable: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 437,
                                            end: 442,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 442,
                                        end: 443,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 444,
                            end: 445,
                        },
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 567,
                        end: 569,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 570,
                        end: 588,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 588,
                        end: 589,
                    },
                },
                arguments: [
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 589,
                                end: 594,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 594,
                                end: 595,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 596,
                                    end: 599,
                                },
                            },
                        },
                    },
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 601,
                                end: 604,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 604,
                                end: 605,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 606,
                                    end: 609,
                                },
                            },
                        },
                    },
                ],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 609,
                        end: 610,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 611,
                                end: 613,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 614,
                                    end: 617,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 618,
                            end: 619,
                        },
                    },
                    statements: [
                        VariableDefinition(
                            VariableDefinition {
                                decl_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 624,
                                        end: 627,
                                    },
                                },
                                identifier: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 628,
                                        end: 633,
                                    },
                                },
                                type_token: None,
                                equals_token: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 634,
                                        end: 635,
                                    },
                                },
                                initializer: Literal {
                                    value: Literal {
                                        value: Integer(
                                            0,
                                        ),
                                        location: Location {
                                            start: 636,
                                            end: 637,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 637,
                                        end: 638,
                                    },
                                },
                            },
                        ),
                        For(
                            For {
                                for_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 643,
                                        end: 646,
                                    },
                                },
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 647,
                                        end: 648,
                                    },
                                },
                                var_type: None,
                                in_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 649,
                                        end: 651,
                                    },
                                },
                                iterable: FunctionCall {
                                    name: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 652,
                                            end: 657,
                                        },
                                    },
                                    arguments: [
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 658,
                                                    end: 663,
                                                },
                                            },
                                        },
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 665,
                                                    end: 668,
                                                },
                                            },
                                        },
                                    ],
                                },
                                body: Body {
                                    opening_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 670,
                                            end: 671,
                                        },
                                    },
                                    statements: [
                                        Expression {
                                            expression: Assignment {
                                                left_expr: Name {
                                                    variable: Token {
                                                        kind: Identifier,
                                                        location: Location {
                                                            start: 680,
                                                            end: 685,
                                                        },
                                                    },
                                                },
                                                operator: Token {
                                                    kind: Symbol,
                                                    location: Location {
                                                        start: 686,
                                                        end: 687,
                                                    },
                                                },
                                                right_expr: BinaryOperator {
                                                    name: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 694,
                                                            end: 695,
                                                        },
                                                    },
                                                    operands: [
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 688,
                                                                    end: 693,
                                                                },
                                                            },
                                                        },
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 696,
                                                                    end: 697,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                            },
                                            semicolon: Token {
                                                kind: Symbol,
                                                location: Location {
                                                    start: 697,
                                                    end: 698,
                                                },
                                            },
                                        },
                                    ],
                                    closing_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 703,
                                            end: 704,
                                        },
                                    },
                                },
                            },
                        ),
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 709,
                                        end: 715,
                                    },
                                },
                                expression: Variable {
                                    variable: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 716,
                                            end: 721,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 721,
                                        end: 722,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 723,
                            end: 724,
                        },
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 774,
                        end: 776,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 777,
                        end: 782,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 782,
                        end: 783,
                    },
                },
                arguments: [
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 783,
                                end: 788,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 788,
                                end: 789,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 790,
                                    end: 793,
                                },
                            },
                        },
                    },
                    FunctionArgument {
                        name: Token {
                            kind: Identifier,
                            location: Location {
                                start: 795,
                                end: 798,
                            },
                        },
                        colon: Token {
                            kind: Symbol,
                            location: Location {
                                start: 798,
                                end: 799,
                            },
                        },
                        reference_token: None,
                        arg_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 800,
                                    end: 803,
                                },
                            },
                        },
                    },
                ],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 803,
                        end: 804,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 805,
                                end: 807,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 808,
                                    end: 811,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 812,
                            end: 813,
                        },
                    },
                    statements: [
                        VariableDefinition(
                            VariableDefinition {
                                decl_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 818,
                                        end: 821,
                                    },
                                },
                                identifier: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 822,
                                        end: 823,
                                    },
                                },
                                type_token: None,
                                equals_token: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 824,
                                        end: 825,
                                    },
                                },
                                initializer: Literal {
                                    value: Literal {
                                        value: Integer(
                                            0,
                                        ),
                                        location: Location {
                                            start: 826,
                                            end: 827,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 827,
                                        end: 828,
                                    },
                                },
                            },
                        ),
                        For(
                            For {
                                for_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 833,
                                        end: 836,
                                    },
                                },
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 837,
                                        end: 839,
                                    },
                                },
                                var_type: Some(
                                    TypeHint {
                                        type_name: Token {
                                            kind: Identifier,
                                            location: Location {
                                                start: 841,
                                                end: 844,
                                            },
                                        },
                                    },
                                ),
                                in_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 845,
                                        end: 847,
                                    },
                                },
                                iterable: FunctionCall {
                                    name: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 848,
                                            end: 853,
                                        },
                                    },
                                    arguments: [
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 854,
                                                    end: 859,
                                                },
                                            },
                                        },
                                        Variable {
                                            variable: Token {
                                                kind: Identifier,
                                                location: Location {
                                                    start: 861,
                                                    end: 864,
                                                },
                                            },
                                        },
                                    ],
                                },
                                body: Body {
                                    opening_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 866,
                                            end: 867,
                                        },
                                    },
                                    statements: [
                                        Expression {
                                            expression: Assignment {
                                                left_expr: Name {
                                                    variable: Token {
                                                        kind: Identifier,
                                                        location: Location {
                                                            start: 876,
                                                            end: 877,
                                                        },
                                                    },
                                                },
                                                operator: Token {
                                                    kind: Symbol,
                                                    location: Location {
                                                        start: 878,
                                                        end: 879,
                                                    },
                                                },
                                                right_expr: BinaryOperator {
                                                    name: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 882,
                                                            end: 883,
                                                        },
                                                    },
                                                    operands: [
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 880,
                                                                    end: 881,
                                                                },
                                                            },
                                                        },
                                                        Literal {
                                                            value: Literal {
                                                                value: Integer(
                                                                    1,
                                                                ),
                                                                location: Location {
                                                                    start: 884,
                                                                    end: 885,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                            },
                                            semicolon: Token {
                                                kind: Symbol,
                                                location: Location {
                                                    start: 885,
                                                    end: 886,
                                                },
                                            },
                                        },
                                    ],
                                    closing_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 891,
                                            end: 892,
                                        },
                                    },
                                },
                            },
                        ),
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 897,
                                        end: 903,
                                    },
                                },
                                expression: Variable {
                                    variable: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 904,
                                            end: 905,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 905,
                                        end: 906,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 907,
                            end: 908,
                        },
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 967,
                        end: 969,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 970,
                        end: 983,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 983,
                        end: 984,
                    },
                },
                arguments: [],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 984,
                        end: 985,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 986,
                                end: 988,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 989,
                                    end: 992,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 993,
                            end: 994,
                        },
                    },
                    statements: [
                        VariableDefinition(
                            VariableDefinition {
                                decl_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 999,
                                        end: 1002,
                                    },
                                },
                                identifier: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1003,
                                        end: 1008,
                                    },
                                },
                                type_token: None,
                                equals_token: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 1009,
                                        end: 1010,
                                    },
                                },
                                initializer: Literal {
                                    value: Literal {
                                        value: Integer(
                                            0,
                                        ),
                                        location: Location {
                                            start: 1011,
                                            end: 1012,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 1012,
                                        end: 1013,
                                    },
                                },
                            },
                        ),
                        For(
                            For {
                                for_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1018,
                                        end: 1021,
                                    },
                                },
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1022,
                                        end: 1023,
                                    },
                                },
                                var_type: Some(
                                    TypeHint {
                                        type_name: Token {
                                            kind: Identifier,
                                            location: Location {
                                                start: 1025,
                                                end: 1028,
                                            },
                                        },
                                    },
                                ),
                                in_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1029,
                                        end: 1031,
                                    },
                                },
                                iterable: FunctionCall {
                                    name: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 1032,
                                            end: 1037,
                                        },
                                    },
                                    arguments: [
                                        Literal {
                                            value: Literal {
                                                value: Integer(
                                                    0,
                                                ),
                                                location: Location {
                                                    start: 1038,
                                                    end: 1039,
                                                },
                                            },
                                        },
                                        Literal {
                                            value: Literal {
                                                value: Integer(
                                                    10,
                                                ),
                                                location: Location {
                                                    start: 1041,
                                                    end: 1043,
                                                },
                                            },
                                        },
                                    ],
                                },
                                body: Body {
                                    opening_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 1045,
                                            end: 1046,
                                        },
                                    },
                                    statements: [
                                        If(
                                            If {
                                                if_token: Token {
                                                    kind: Identifier,
                                                    location: Location {
                                                        start: 1055,
                                                        end: 1057,
                                                    },
                                                },
                                                condition: BinaryOperator {
                                                    name: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1060,
                                                            end: 1062,
                                                        },
                                                    },
                                                    operands: [
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 1058,
                                                                    end: 1059,
                                                                },
                                                            },
                                                        },
                                                        Literal {
                                                            value: Literal {
                                                                value: Integer(
                                                                    3,
                                                                ),
                                                                location: Location {
                                                                    start: 1063,
                                                                    end: 1064,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                                body: Body {
                                                    opening_brace: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1065,
                                                            end: 1066,
                                                        },
                                                    },
                                                    statements: [
                                                        Continue(
                                                            Continue {
                                                                continue_token: Token {
                                                                    kind: Identifier,
                                                                    location: Location {
                                                                        start: 1079,
                                                                        end: 1087,
                                                                    },
                                                                },
                                                                semicolon: Token {
                                                                    kind: Symbol,
                                                                    location: Location {
                                                                        start: 1087,
                                                                        end: 1088,
                                                                    },
                                                                },
                                                            },
                                                        ),
                                                    ],
                                                    closing_brace: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1097,
                                                            end: 1098,
                                                        },
                                                    },
                                                },
                                                else_branch: None,
                                            },
                                        ),
                                        If(
                                            If {
                                                if_token: Token {
                                                    kind: Identifier,
                                                    location: Location {
                                                        start: 1107,
                                                        end: 1109,
                                                    },
                                                },
                                                condition: BinaryOperator {
                                                    name: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1112,
                                                            end: 1114,
                                                        },
                                                    },
                                                    operands: [
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 1110,
                                                                    end: 1111,
                                                                },
                                                            },
                                                        },
                                                        Literal {
                                                            value: Literal {
                                                                value: Integer(
                                                                    6,
                                                                ),
                                                                location: Location {
                                                                    start: 1115,
                                                                    end: 1116,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                                body: Body {
                                                    opening_brace: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1117,
                                                            end: 1118,
                                                        },
                                                    },
                                                    statements: [
                                                        Break(
                                                            Break {
                                                                break_token: Token {
                                                                    kind: Identifier,
                                                                    location: Location {
                                                                        start: 1131,
                                                                        end: 1136,
                                                                    },
                                                                },
                                                                semicolon: Token {
                                                                    kind: Symbol,
                                                                    location: Location {
                                                                        start: 1136,
                                                                        end: 1137,
                                                                    },
                                                                },
                                                            },
                                                        ),
                                                    ],
                                                    closing_brace: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1146,
                                                            end: 1147,
                                                        },
                                                    },
                                                },
                                                else_branch: None,
                                            },
                                        ),
                                        Expression {
                                            expression: Assignment {
                                                left_expr: Name {
                                                    variable: Token {
                                                        kind: Identifier,
                                                        location: Location {
                                                            start: 1156,
                                                            end: 1161,
                                                        },
                                                    },
                                                },
                                                operator: Token {
                                                    kind: Symbol,
                                                    location: Location {
                                                        start: 1162,
                                                        end: 1163,
                                                    },
                                                },
                                                right_expr: BinaryOperator {
                                                    name: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1170,
                                                            end: 1171,
                                                        },
                                                    },
                                                    operands: [
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 1164,
                                                                    end: 1169,
                                                                },
                                                            },
                                                        },
                                                        Variable {
                                                            variable: Token {
                                                                kind: Identifier,
                                                                location: Location {
                                                                    start: 1172,
                                                                    end: 1173,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                            },
                                            semicolon: Token {
                                                kind: Symbol,
                                                location: Location {
                                                    start: 1173,
                                                    end: 1174,
                                                },
                                            },
                                        },
                                    ],
                                    closing_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 1179,
                                            end: 1180,
                                        },
                                    },
                                },
                            },
                        ),
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1185,
                                        end: 1191,
                                    },
                                },
                                expression: Variable {
                                    variable: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 1192,
                                            end: 1197,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 1197,
                                        end: 1198,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 1199,
                            end: 1200,
                        },
                    },
                },
            },
        ),
        Function(
            Function {
                fn_token: Token {
                    kind: Identifier,
                    location: Location {
                        start: 1258,
                        end: 1260,
                    },
                },
                name: Token {
                    kind: Identifier,
                    location: Location {
                        start: 1261,
                        end: 1267,
                    },
                },
                opening_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 1267,
                        end: 1268,
                    },
                },
                arguments: [],
                closing_paren: Token {
                    kind: Symbol,
                    location: Location {
                        start: 1268,
                        end: 1269,
                    },
                },
                return_decl: Some(
                    ReturnDecl {
                        return_token: Token {
                            kind: Symbol,
                            location: Location {
                                start: 1270,
                                end: 1272,
                            },
                        },
                        return_type: TypeHint {
                            type_name: Token {
                                kind: Identifier,
                                location: Location {
                                    start: 1273,
                                    end: 1276,
                                },
                            },
                        },
                    },
                ),
                body: Body {
                    opening_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 1277,
                            end: 1278,
                        },
                    },
                    statements: [
                        VariableDefinition(
                            VariableDefinition {
                                decl_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1283,
                                        end: 1286,
                                    },
                                },
                                identifier: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1287,
                                        end: 1292,
                                    },
                                },
                                type_token: None,
                                equals_token: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 1293,
                                        end: 1294,
                                    },
                                },
                                initializer: Literal {
                                    value: Literal {
                                        value: Integer(
                                            0,
                                        ),
                                        location: Location {
                                            start: 1295,
                                            end: 1296,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 1296,
                                        end: 1297,
                                    },
                                },
                            },
                        ),
                        For(
                            For {
                                for_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1302,
                                        end: 1305,
                                    },
                                },
                                variable: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1306,
                                        end: 1307,
                                    },
                                },
                                var_type: Some(
                                    TypeHint {
                                        type_name: Token {
                                            kind: Identifier,
                                            location: Location {
                                                start: 1309,
                                                end: 1312,
                                            },
                                        },
                                    },
                                ),
                                in_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1313,
                                        end: 1315,
                                    },
                                },
                                iterable: FunctionCall {
                                    name: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 1316,
                                            end: 1321,
                                        },
                                    },
                                    arguments: [
                                        Literal {
                                            value: Literal {
                                                value: Integer(
                                                    0,
                                                ),
                                                location: Location {
                                                    start: 1322,
                                                    end: 1323,
                                                },
                                            },
                                        },
                                        Literal {
                                            value: Literal {
                                                value: Integer(
                                                    3,
                                                ),
                                                location: Location {
                                                    start: 1325,
                                                    end: 1326,
                                                },
                                            },
                                        },
                                    ],
                                },
                                body: Body {
                                    opening_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 1328,
                                            end: 1329,
                                        },
                                    },
                                    statements: [
                                        For(
                                            For {
                                                for_token: Token {
                                                    kind: Identifier,
                                                    location: Location {
                                                        start: 1338,
                                                        end: 1341,
                                                    },
                                                },
                                                variable: Token {
                                                    kind: Identifier,
                                                    location: Location {
                                                        start: 1342,
                                                        end: 1343,
                                                    },
                                                },
                                                var_type: Some(
                                                    TypeHint {
                                                        type_name: Token {
                                                            kind: Identifier,
                                                            location: Location {
                                                                start: 1345,
                                                                end: 1348,
                                                            },
                                                        },
                                                    },
                                                ),
                                                in_token: Token {
                                                    kind: Identifier,
                                                    location: Location {
                                                        start: 1349,
                                                        end: 1351,
                                                    },
                                                },
                                                iterable: FunctionCall {
                                                    name: Token {
                                                        kind: Identifier,
                                                        location: Location {
                                                            start: 1352,
                                                            end: 1357,
                                                        },
                                                    },
                                                    arguments: [
                                                        Literal {
                                                            value: Literal {
                                                                value: Integer(
                                                                    0,
                                                                ),
                                                                location: Location {
                                                                    start: 1358,
                                                                    end: 1359,
                                                                },
                                                            },
                                                        },
                                                        Literal {
                                                            value: Literal {
                                                                value: Integer(
                                                                    3,
                                                                ),
                                                                location: Location {
                                                                    start: 1361,
                                                                    end: 1362,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                },
                                                body: Body {
                                                    opening_brace: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1364,
                                                            end: 1365,
                                                        },
                                                    },
                                                    statements: [
                                                        Expression {
                                                            expression: Assignment {
                                                                left_expr: Name {
                                                                    variable: Token {
                                                                        kind: Identifier,
                                                                        location: Location {
                                                                            start: 1378,
                                                                            end: 1383,
                                                                        },
                                                                    },
                                                                },
                                                                operator: Token {
                                                                    kind: Symbol,
                                                                    location: Location {
                                                                        start: 1384,
                                                                        end: 1385,
                                                                    },
                                                                },
                                                                right_expr: BinaryOperator {
                                                                    name: Token {
                                                                        kind: Symbol,
                                                                        location: Location {
                                                                            start: 1392,
                                                                            end: 1393,
                                                                        },
                                                                    },
                                                                    operands: [
                                                                        Variable {
                                                                            variable: Token {
                                                                                kind: Identifier,
                                                                                location: Location {
                                                                                    start: 1386,
                                                                                    end: 1391,
                                                                                },
                                                                            },
                                                                        },
                                                                        BinaryOperator {
                                                                            name: Token {
                                                                                kind: Symbol,
                                                                                location: Location {
                                                                                    start: 1396,
                                                                                    end: 1397,
                                                                                },
                                                                            },
                                                                            operands: [
                                                                                Variable {
                                                                                    variable: Token {
                                                                                        kind: Identifier,
                                                                                        location: Location {
                                                                                            start: 1394,
                                                                                            end: 1395,
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Variable {
                                                                                    variable: Token {
                                                                                        kind: Identifier,
                                                                                        location: Location {
                                                                                            start: 1398,
                                                                                            end: 1399,
                                                                                        },
                                                                                    },
                                                                                },
                                                                            ],
                                                                        },
                                                                    ],
                                                                },
                                                            },
                                                            semicolon: Token {
                                                                kind: Symbol,
                                                                location: Location {
                                                                    start: 1399,
                                                                    end: 1400,
                                                                },
                                                            },
                                                        },
                                                    ],
                                                    closing_brace: Token {
                                                        kind: Symbol,
                                                        location: Location {
                                                            start: 1409,
                                                            end: 1410,
                                                        },
                                                    },
                                                },
                                            },
                                        ),
                                    ],
                                    closing_brace: Token {
                                        kind: Symbol,
                                        location: Location {
                                            start: 1415,
                                            end: 1416,
                                        },
                                    },
                                },
                            },
                        ),
                        Return(
                            ReturnWithValue {
                                return_token: Token {
                                    kind: Identifier,
                                    location: Location {
                                        start: 1421,
                                        end: 1427,
                                    },
                                },
                                expression: Variable {
                                    variable: Token {
                                        kind: Identifier,
                                        location: Location {
                                            start: 1428,
                                            end: 1433,
                                        },
                                    },
                                },
                                semicolon: Token {
                                    kind: Symbol,
                                    location: Location {
                                        start: 1433,
                                        end: 1434,
                                    },
                                },
                            },
                        ),
                    ],
                    closing_brace: Token {
                        kind: Symbol,
                        location: Location {
                            start: 1435,
                            end: 1436,
                        },
                    },
                },
            },
        ),
    ],
}