-
Notifications
You must be signed in to change notification settings - Fork 1
Keywords
Lloyd Dilley edited this page Jun 11, 2020
·
2 revisions
Keyword | Description |
---|---|
break | leaves loop or switch |
case | reserved (if used within switch) |
class | create a class |
continue | resumes loop iteration |
default | reserved (else used within switch) |
do | block performed at least once prior to while loop |
else | otherwise |
enum | enumeration |
false | bool value |
for | loop type |
func | function definition |
goto | jump to a label |
if | condition check |
namespace | container |
null | non-existent value |
return | return from a function with optional value |
super | reserved (call parent constructor) |
switch | switch statement |
true | bool value |
use | import/include code |
var | reserved (implicit) |
while | loop type |