[ ]*[,][ ]*
Please note that all parameters may be padded with whitespace like so:
CREATE_BASE( CollegePark, 3, 5)
but this should be processed as if it were:
CREATE_BASE(CollegePark,3,5)
Also, certain commands may contain no parameters. In this situation, there may be zero or more white spaces between the parentheses like so:
PRINT_DICTIONARY( )
But this command should also discard the whitespace and process identically as if it were
PRINT_DICTIONARY()