Skip to content
This repository has been archived by the owner on Aug 31, 2020. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kimbtech committed Sep 19, 2018
1 parent 92d6b7c commit 6c94eec
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,48 @@ All USF-Data-Types are subclasses of the main USF-Data-Type called `Atom`.
- MapList
- combining multiple Key-Value pairs

## USF Format
The normal USF Format is a one-line string, which contains all the data.

```
[true,[false,100,20,-12,{\"test\":{\"a\":false}},{{:}:{[true,true]:-12}}],=1.0=,=-11.02=]
```
For debugging and other cases one can use the human friendly output.
(Method `toHumFrieUSF()` instead of `toUSF()` and `parseHumFrie()` instead of `parse()`)

```
[
true,
[
false,
100,
20,
-12,
{
"test"
:
{
"a"
:
false
}
},
{
{:}
:
{
[
true,
true
]
:
-12
}
}
],
=1.0=,
=-11.02=
]
```

0 comments on commit 6c94eec

Please sign in to comment.