Skip to main content

Keywords

Flow-Wing programming language supports the following keywords:

KeywordDescription
trueBoolean true value
falseBoolean false value
varVariable declaration
ifConditional statement
orLogical OR operator
elseAlternative branch in conditional statement
whileLooping statement
forLooping statement
funFunction declaration
toUsed in range expressions
continueSkip to the next iteration in a loop
breakExit from a loop
returnReturn a value from a function
constConstant declaration
nthgRepresents 'nothing' or 'void'
int32-bit integer type
int88-bit integer type
int6464-bit integer type
boolBoolean type
unknownRepresents an unknown type
strString type
deciDecimal type
deci3232-bit decimal type
NirRepresents null value
bringImport or bring a module
exposeExpose functionality of a module
fromUsed in import statements
fillFill a data structure
typeDefine a type
declDeclare a type or function
newInstantiate a class or object
classClass declaration
inoutParameter passing mode
extendsInherit from a superclass
asType casting or aliasing
moduleModule declaration
switchSwitch statement
caseCase in a switch statement
defaultDefault case in a switch statement