> The comma seperates arguments in a function call. You are calling toInt > with 2 arguments.
No, the comma is a simple operator in this context. 1,2,3 "executes" all the expressions and returns 3 (the last expression). For example, (1,2,3).toString() is calling 3.toString(). -- S.
