JSON ( “JavaScript Object Notation“) is a widely used serialization format. There are JSON libraries available for most common programming libraries. PHP has included efficient built-in functions for JSON (json_encode, json_decode) since version 5.2.
Wisp has two built-in JSON encoding functions:
“>>>” is the “encode JSON” function
(>>> ‘(this (“is” a (test)) 1 2 3 #t))
==>
['this',['"is"','a',['test']],1,2,3,true]
“<<<” is the [...]