pull/1/head
Marrub 2018-02-08 14:54:48 +00:00 committed by GitHub
parent e71294fa49
commit a7b28ed31d
1 changed files with 15 additions and 1 deletions

View File

@ -325,7 +325,21 @@ const MyCoolInt = int(777.7777);
Static array definitions
=========================
TODO
Similar to constants, static arrays are named values, but for an array. They are created with the syntax:
```
static const Type name[] = {
[Expression list...]
};
```
Or:
```
static const Type[] name = {
[Expression list...]
};
```
Include directives
==================