Skip to content
/ Ason Public

Azrael's Simple Object Notation.

License

Notifications You must be signed in to change notification settings

luke-beep/Ason

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ason

Ason stands for Azrael's Simple Object Notation. It is a simple data format that is easy to read and write for humans. It is inspired by JSON, but it is not a subset of JSON. It is designed to be a data format that is easy to read and write for humans, and easy to parse for computers.

{ "Normal" };
str -> "String": "String";
int -> "Integer": 2;
flt -> "Float": 3.14;
bool -> "Boolean": True;
null -> "Null": null;
{ "Array" };
str[] -> "StringArray": ["String1","String2","String3"];
int[] -> "IntegerArray": [1, 2, 3];
flt[] -> "FloatArray": [1.1, 2.2, 3.3];
bool[] -> "BooleanArray": [True, False, True];
Section - Normal
String: String
Float: 3.14
Null:
Section - Array
String Array: "String1", "String2", "String3"
Integer Array: 1, 2, 3
Float Array: 1.1, 2.2, 3.3
Boolean Array: True, False, True