8.6 Identifiers

Identifiers are simply names assigned to variables and functions. An identifier must start with a letter or an underscore (_) eventually followed by one or more letters, numbers, underscores and dots.

Valid identifiers are:

Important: Cows defines some internal variables beginning with the underscore character. In order to avoid clashes with future versions you'd better avoid using the underscore character at the beginning of a variable name. Current version of Cows defines the following variables:

_months [ ]

An array storing months' names

_days [ ]

An array storing week days' names

_argc

The number of arguments passed to an included file

_argv[ ]

Arguments passed to an included file

This manual can be downloaded from http://www.g-cows.org/.