start . me .
Directory path . code , pang .

File : fibonacci.structure.txt

        [
    [
        "out1",
        "fibonacci algorithm"
    ],
    [
        "set",
        "x",
        0
    ],
    [
        "set",
        "y",
        1
    ],
    [
        "loop",
        [
            "expr",
            [
                "get",
                "x"
            ],
            "<",
            256
        ],
        [
            [
                "out1",
                [
                    "get",
                    "x"
                ]
            ],
            [
                "set",
                "z",
                [
                    "expr",
                    [
                        "get",
                        "x"
                    ],
                    "+",
                    [
                        "get",
                        "y"
                    ]
                ]
            ],
            [
                "set",
                "x",
                [
                    "get",
                    "y"
                ]
            ],
            [
                "set",
                "y",
                [
                    "get",
                    "z"
                ]
            ]
        ]
    ]
]