Navigation
Synopsis Convert Boolean value to string.
Function str toString(bool b)
Usage import Boolean;
Description Maps true to "true" and false to "false".
Examples
rascal>import Boolean;
ok
rascal>toString(true);
str: "true"
rascal>toString(false);
str: "false"
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.