jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/stylus/boolean_feature.test
2016-02-02 21:12:02 -05:00

21 lines
347 B
Plaintext

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