Select a file to view its exact on-chain source. Sorted README → gnomod → sources → tests.
Render(path string) string
Signatures reconstructed verbatim from vm/qfuncs — interface params keep their inline definitions.
# Run-Length Encoding
`<count><char>` pairs, demoing the [`p/moul/x/daily/rle`](/p/moul/x/daily/rle/v0) library.
| input | encoded | size | round-trips |
|---|---|---|---|
| `aaaaaaaaaabbbbbbbbbb` | `10a10b` | 30% | ✅ |
| `aaabbc` | `3a2b1c` | 100% | ✅ |
| `abcdef` | `1a1b1c1d1e1f` | 200% | ✅ |
> Over 100% means the encoding made the data **bigger**. RLE only wins on runny input, and `abcdef` is the honest counter-example.
> Append text to the path to encode it — digits are rejected, since they would be ambiguous with a run count.
vm/qrender output, sanitized (docs/render-security.md) and displayed in an empty-sandbox iframe — scripts, forms and popups cannot run. Links stay inert in-preview; right-click to open.