Skip to content

Latest commit

 

History

History
41 lines (39 loc) · 378 Bytes

term_strucutre.md

File metadata and controls

41 lines (39 loc) · 378 Bytes

Term

Definition of <term> :

{
  "type": "Atomic",
  "id": <int>,
  "bang": [ <int>,...,<int> ] // optional
}

or

{
  "type": "Function",
  "symbol": <int>,
  "args": [
    <term>,
    ...,
    <term>
  ] // optional
}

or

{
  "type": "Attacker",
  "label": <string>
}

or

{
  "type": "Tuple",
  "args": [
    <term>,
    ...,
    <term>
  ]
}