v2 / vlib / x / json2 / constants.v
5 lines · 4 sloc · 97 bytes · bae7684276f5e56a9293a38bb286df3644157109
Raw
1module json2
2
3const true_string = 'true'
4const false_string = 'false'
5const null_string = 'null'
6