Update page 'Aer v1.0 Specification'

2018-09-18 22:16:13 +02:00
parent 44ff2dbe58
commit 906bb572fa

@@ -59,7 +59,7 @@ A keyword is a reserved word in the Aer language. Keywords are used to perform a
Available keywords: as, break, case, catch, class, clone, const, continue, default, do, else, elseif, extends, final, finally, for, foreach, if, implements, interface, instanceof, namespace, new, private, protected, public, static, switch, throw, try, using, virtual, while Available keywords: as, break, case, catch, class, clone, const, continue, default, do, else, elseif, extends, final, finally, for, foreach, if, implements, interface, instanceof, namespace, new, private, protected, public, static, switch, throw, try, using, virtual, while
Next we have other language constructs: define() empty(), exit(), eval(), import(), include(), isset(), list(), require(), return(), print(), unset() Next we have other language constructs: define() empty(), exit(), eval(), import(), include(), isset(), list(), require(), return(), print()
#### 3.3.4 Semicolon #### 3.3.4 Semicolon
A semicolon is used to mark the end of a statement in Aer language. It is mandatory. A semicolon is used to mark the end of a statement in Aer language. It is mandatory.
@@ -245,7 +245,6 @@ Type casting in Aer works much as it does in C/C++ - the name of the desired typ
* (int) - casts to Integer * (int) - casts to Integer
* (object) - casts to Object * (object) - casts to Object
* (string) - casts to String * (string) - casts to String
* (unset) - casts to NULL
An example: An example: