Conversion to string

A boolean, integer, or double in a string context converts to a string. (The boolean values true and false are not strings. See Boolean data.) The following values, when specified for an input field requiring a string value (such as the String field of an Input action), will evaluate to the specified result.
'The result is ' + true                         evaluates to 'The result is true'
FALSE (in an input field that requires a string) converts to 'false'
'The answer is ' + 15                           evaluates to 'The answer is 15'
22 (in an input field that requires a string)   converts to  '22'
14,52 (in an input field that requires a string) evaluates to'14,52'