Keyword | Description | Details page |
---|---|---|
if | if statement | if details |
while | while loop | while details |
function | function declaration | function details |
import | import library | import details |
include | include source file | include details |
lock | lock mutex | lock details |
unlock | unlock mutex | unlock details |
detach | start new thread and execute independently | detach details |
join | start new thread and block until completion | join details |
call | call function | call details |
sizeof | return the size of a value | sizeof details |
println | print to console and end with a newline | println details |
print to console | print details | |
readln | read line from console | readln details |
read | read word from console | read details |
delete | delete value | delete details |
return | return value from function | return details |
end | end a function, while loop, try/catch block, or if statement | end details |
catch | catch an exception after a try block | catch details |
try | try executing potentially unsafe code | try details |
break | break enclosing loop | break details |
const | const value declaration | const details |
else | if statement alternative branch declaration | else details |
system | execute system command | system details |
exec | execute code | exec details |
instanceof | determine the type of a variable | instanceof details |
exit | terminate script or exit program immediately | exit details |
new | create a new struct | new details |
struct | define the template for a struct | struct details |
continue | restart enclosing loop | continue details |