# Simple Extensible Human Notation (.sehn) ## Formats ### `atom` 1. `todo` ### `real` 1. `` 2. `e` 3. `.` | part | allowed value | | ------ | --------------- | | `int` | `-?[1-9][0-9]*` | | `frac` | `[0-9]*` | | `sig` | `` | | `exp` | `` | ### `text` 1. `""` 2. Multiline: ``` ` "" "" ` ``` A `text` value holds low and behold, text. ### `map` 1. `{ : , ...}` A dictionary is a structure with `text` keys mapping to any value. ### `seq` 1. `[, ...]` A list is a structure with a sequence of any value.