next up previous
Next: Output Up: Input Previous: Doubles

Parameter Delimiting

Each parameter will be separated by zero or more spaces, a comma, and zero or more spaces. Thus, the parameter delimiter matches the following regular expression:
[ ]*[,][ ]*

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()



MM Hugue 2004-02-28

Web Accessibility