pixelscript 0.5.9

Multi language scripting runtime
Documentation
1
2
3
4
5
6
7
8
9
import json


def encode(object):
    return json.dumps(object)


def decode(string):
    return json.loads(string)