Added documentation #730

Merged
zxq9 merged 18 commits from github/fork/radrow/doc-revolution into lima 2020-03-10 20:39:40 +09:00
Showing only changes of commit a22971375d - Show all commits

View File

@ -7,8 +7,9 @@ in the priv/stdlib directory. Thanks!
# Standard library # Standard library
Sophia language offers standard library that consists of following namespaces: Sophia language offers standard library that consists of several namespaces. Some of them are already
in the scope and do not need any actions to be used, while some others are hidden under includable
files. The autoincluded namespaces are:
- [Bits](#Bits) - [Bits](#Bits)
- [String](#String) - [String](#String)
@ -23,6 +24,12 @@ Sophia language offers standard library that consists of following namespaces:
- [Contract](#Contract) - [Contract](#Contract)
- [Call](#Call) - [Call](#Call)
- [Chain](#Chain) - [Chain](#Chain)
The following ones need to be included as regular files with `.aes` suffix, for example
```
include "List.aes"
```
- [List](#List) - [List](#List)
- [Option](#Option) - [Option](#Option)
- [Func](#Func) - [Func](#Func)