Closed
Description
What happens when pushing Run as ... Rascal Application
?
The interpreter calls main()
, but I remember that keyword parameters are handled by the interpreter (but how are they set?)
Compiled code calls main([])
, for reasons that I do not recall but it may be to get some similarity with Java's main
.
Any opinions which way to go?