Skip to content

til-lang/til-json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

til-json

Build

  1. make

Usage

> json.decode '{"alfa": 1}'
 dict(alfa=1)
> json.decode '[1, 2, 3]'
 (1 2 3)

> dict (alfa 1) | json.encode
 {"alfa":1}
> json.encode (1 2 3)
 [1,2,3]