Servostar / gemstone

Gemstone programming language compiler (GSC)
GNU General Public License v2.0
3 stars 0 forks source link

added parser rule for function calling #46

Closed Servostar closed 2 months ago

Servostar commented 2 months ago

Added a parser rule for detecting function calls. A function is made out of an identifier and a list of expressions separated by commas.

Servostar commented 2 months ago

we declared that something like this should also be parsed

foo(ident1, ident2)(ident3)

Requested changes implemented