Update 'Metadata'

Sasha Koshka 2022-08-24 05:43:46 +00:00
parent 77e1918a0e
commit b22ab8cb67
1 changed files with 14 additions and 0 deletions

14
Metadata.md Normal file

@ -0,0 +1,14 @@
The metadata section contains optional semantic information such as the author
of a file, and the license it is distributed under. It also contains information
looked at by the compiler like other modules it requires. Keys are represented
by name tokens, and values by string tokens. Each key/value pair should be on
its own line, un-indented.
An example metadata section looks like this:
```
:arf
author "Sasha Koshka"
license "GPLv3"
require "io"
```