lsp-docs 0.1.1

Static structured documentation for the Axon language, embedded at compile time. Consumed by axon-lsp's hover and completion resolvers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
name: String
kind: type
since: 0.1
stability: stable
---

UTF-8 encoded text.

The default carrier for human-readable values: prompts, identifiers,
locale tags, free-form messages. Equality is byte-identical, so two
`String` values that differ only in normalisation form are not equal
under `==`.

Used everywhere the source program writes text literals (e.g.,
`"hello"`) and as the canonical type for `field: String`.