False (Json function)

From m204wiki
Jump to navigation Jump to search

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

%jsonJson object
[%(Json):] The optional class name in parentheses denotes a virtual constructor.

Usage notes

  • The False method is equivalent to Boolean(false).
  • As with all virtual or true constructors, it is usually not necessary to specify the %(json): before the False method. That is %json = %(json):false is equivalent to %json = 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

See also