Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 222 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 222 Bytes

executor-json-library

Simple json library for KayJam Executor

How to use

Decode

var jsonEncoded = "{\"test\":123}"
var decoded = JSON::decode(jsonEncoded);

println(decoded);

Output:

[test:123]