From a22971375d9f9c917f8f100e85acf7b9740a8861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Rowicki?= <35342116+radrow@users.noreply.github.com> Date: Sat, 29 Feb 2020 12:29:00 +0100 Subject: [PATCH] Split TOC --- docs/sophia_stdlib.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/sophia_stdlib.md b/docs/sophia_stdlib.md index ddab81c..8bf3277 100644 --- a/docs/sophia_stdlib.md +++ b/docs/sophia_stdlib.md @@ -7,8 +7,9 @@ in the priv/stdlib directory. Thanks! # 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) - [String](#String) @@ -23,6 +24,12 @@ Sophia language offers standard library that consists of following namespaces: - [Contract](#Contract) - [Call](#Call) - [Chain](#Chain) + +The following ones need to be included as regular files with `.aes` suffix, for example +``` +include "List.aes" +``` + - [List](#List) - [Option](#Option) - [Func](#Func)