Operators Flashcards
1
Q
**
A
Power of, 22 equals 8 222
2
Q
::
A
Colon Access, Module::Class
3
Q
&&
A
Logical and Higher Presedence
4
Q
||
A
Logical or higher Presedence
5
Q
..
A
Range inclusive (0..3) will print all to number 3
6
Q
…
A
Range not inclusive (0…3) will only print to number 2
7
Q
@
A
Object Scope
8
Q
@@
A
Class Scope
9
Q
$
A
Global Scope