Skip to content

ao0000/jp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jp

Jp is JSON(JavaScript Object Notation) parser.

Syntax

EBNF(Extended Backus-Naur Form)

json = object | array .
object = "{" [ ( string ":" value ) { ","  string ":" value } ] "}" .
array = "[" [ value { "," value } ] "]" .
value = null | boolean | string | number | array | object .
null = "null" .
boolean = "true" | "false" .
string = { "a"..."z" | "A"..."Z" } .
number = [ "-" ] { "1"..."9" } "0"..."9" [ "." { "0"..."9" } "1"..."9" ] .

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages