effective-java-3rd-chinese/docs/_style/prism-master/tests/languages/stylus/boolean_feature.test
2019-03-14 13:10:17 +08:00

21 lines
367 B
Plaintext

a = true
b = false
----------------------------------------------------
[
["variable-declaration", [
["variable", "a"],
["operator", "="],
["boolean", "true"]
]],
["variable-declaration", [
["variable", "b"],
["operator", "="],
["boolean", "false"]
]]
]
----------------------------------------------------
Checks for booleans.