Files
mql5-skills/skills/mql5/references/docs/00-basis/0004-basis-syntax-identifiers.md
T
2026-06-23 21:47:51 +08:00

19 lines
582 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Identifiers
Identifiers are used as names of variables and functions. The length of the identifier can not exceed 63 characters.
Characters allowed to be written in an identifier: figures 0-9, the Latin uppercase and lowercase letters a-z and A-Z, recognized as different characters, the underscore character (_).The first character can not be a digit.
The identifier must not coincide with [reserved](/en/docs/basis/syntax/reserved) word.
Examples:
```
NAME1 namel Total_5 Paper
```
See also
[Variables](/en/docs/basis/variables), [Functions](/en/docs/basis/function)