Changed Key for Function name

This commit is contained in:
Ur Mom 2024-05-06 12:09:58 +02:00
parent 6038241a1b
commit 4ee6be3eb8
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ funcall: Ident paramlist { DEBUG("Function call"); };
assign: Ident '=' expr { DEBUG("Assignment"); };
moduleimport: KeyImport '"filename"' { DEBUG("Module-Import"); };
moduleimport: KeyImport FunFilename { DEBUG("Module-Import"); };
statementlist: statementlist statement
| ;