Skip to content

Commit 0b25b0a

Browse files
authored
Update README.md
1 parent ea216c4 commit 0b25b0a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
11
# executor-json-library
22
Simple json library for KayJam Executor
3+
4+
## How to use
5+
### Decode
6+
```
7+
var jsonEncoded = "{\"test\":123}"
8+
var decoded = JSON::decode(jsonEncoded);
9+
10+
println(decoded);
11+
```
12+
Output:
13+
```
14+
[test:123]
15+
```

0 commit comments

Comments
 (0)