61890b15cb
* wip * move print and JSON functions to modules * builtin functions are not replacable now * builtin functions are added for default nil symbol table * importables: builtin modules and source modules * refactoring runtime tests * fix tests * update documentation * cleanup * clean up cli * fix REPL prints
10 lines
203 B
Markdown
10 lines
203 B
Markdown
# Module - "json"
|
|
|
|
```golang
|
|
json := import("json")
|
|
```
|
|
|
|
## Functions
|
|
|
|
- `parse(v)`: Parses the JSON string and returns an object.
|
|
- `stringify(v)`: Returns the JSON string representation of the object.
|