{
  "functions": [
    {
      "name": "main",
      "instrs": [
        {"dest": "n", "op": "const", "type": "int", "value": 10},
        {"dest": "a", "op": "const", "type": "int", "value": 0},
        {"dest": "b", "op": "const", "type": "int", "value": 1},
        {"dest": "i", "op": "const", "type": "int", "value": 0},
        {"label": "loop"},
        {"args": ["i", "n"], "dest": "cond", "op": "lt", "type": "bool"},
        {"args": ["cond"], "labels": ["body", "end"], "op": "br"},
        {"label": "body"},
        {"args": ["a"], "op": "print"},
        {"args": ["a", "b"], "dest": "sum", "op": "add", "type": "int"},
        {"args": ["b"], "dest": "a", "op": "id", "type": "int"},
        {"args": ["sum"], "dest": "b", "op": "id", "type": "int"},
        {"dest": "one", "op": "const", "type": "int", "value": 1},
        {"args": ["i", "one"], "dest": "i", "op": "add", "type": "int"},
        {"labels": ["loop"], "op": "jmp"},
        {"label": "end"}
      ]
    }
  ]
}
