diff options
-rw-r--r-- | syntax.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -205,11 +205,11 @@ VariableDeclaration ← Type identifier ';' ## Types ``` -Type ← BasicType / - 'const' BasicType / +Type ← 'const' BasicType / BasicType '*' / BasicType '[' Expression ']' / - BasicType 'function' '(' (BasicType ',')* ')' + BasicType 'function' '(' (BasicType ',')* ')' / + BasicType BasicType ← 'void' / IntegerType / 'signed' IntegerType / |