Upto now I worked with Visual Studio Code but I'm trying now to compile on the command line.
I run
monkeyc -d fenix5plus -f monkey.jungle -o deluxe.prg -y key
and get the following error:
ERROR: monkey.jungle:2: mismatched input '=' expecting {'.', '-', ID, DIGIT, 'manifest', 'sourcePath', 'excludeAnnotations', 'resourcePath', 'lang', 'barrelPath', 'annotations'}
I have the following monkey.jungle:
project.manifest = manifest.xml
project.typecheck = 0
The monkey.jungle and manifest.xml are all in the same directory from where I run the monkeyc - command.
In Visual Studio Code it worked fine. What do I do wrong on the command line?