ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

language-configuration.json (314B)


      1 {
      2     "comments": {
      3         "lineComment": "//",
      4         "blockComment": [
      5             "/*",
      6             "*/"
      7         ]
      8     },
      9     "brackets": [
     10         [
     11             "{",
     12             "}"
     13         ],
     14         [
     15             "[",
     16             "]"
     17         ],
     18         [
     19             "(",
     20             ")"
     21         ]
     22     ]
     23 }