initial commit for adding Module Import

This commit is contained in:
Ur Mom 2024-05-06 12:00:03 +02:00
parent f8c888216a
commit 6038241a1b
1 changed files with 2 additions and 0 deletions

View File

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