False (Json function): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
{{Template:Json:False subtitle}} | {{Template:Json:False subtitle}} | ||
This function creates a boolean Json object with a value of false. | This function creates a boolean Json object with a value of false. | ||
==Syntax== | ==Syntax== |
Revision as of 03:20, 18 February 2015
Create a false Boolean JSON object (Json class)
[Introduced in Model 204 7.6]
This function creates a boolean Json object with a value of false.
Syntax
%json = [%(Json):]False
Syntax terms
%json | Json object |
---|---|
[%(Json):] | The optional class name in parentheses denotes a virtual constructor. |
Usage notes
- The False method is equivalent to Boolean(false).
Examples
The following creates a boolean Json object with a value of false:
b %json is object json %json = false printText {~=%json} end
It prints:
%json=false