possum-script 0.1.0

Scripting language for possum
Documentation
```
let hello = fn(x, y, z) { 2 };

let g = {
    fn hello(self) { self }

    hello: fn(self) { self },

    bar: 22,

    baz: test,
}

let g = g:hello();

g"test"


```

```
IDENT          ::= [_a-zA-Z][_a-zA-Z0-9]*

```