Translations:Development/53/en: Difference between revisions
Importing a new version from external source |
Importing a new version from external source |
||
Line 1: | Line 1: | ||
* The names of variables contain 3 parts: qualifier, prefix and name. | *The names of variables contain 3 parts: qualifier, prefix and name. | ||
* Variable names should start with uppercase unless they are 1 char long without any prefix or qualifier, for example: <code>i</code>, <code>x</code>, <code>y</code>. | *Variable names should start with uppercase unless they are 1 char long without any prefix or qualifier, for example: <code>i</code>, <code>x</code>, <code>y</code>. | ||
* Variables can have more than 1 qualifier (or zero) and more than 1 prefix (or zero). | *Variables can have more than 1 qualifier (or zero) and more than 1 prefix (or zero). |
Latest revision as of 17:29, 4 May 2024
- The names of variables contain 3 parts: qualifier, prefix and name.
- Variable names should start with uppercase unless they are 1 char long without any prefix or qualifier, for example:
i
,x
,y
. - Variables can have more than 1 qualifier (or zero) and more than 1 prefix (or zero).