summaryrefslogtreecommitdiff
path: root/docs/examples.md
diff options
context:
space:
mode:
authorRob Waller <rdwaller1984@gmail.com>2020-08-06 16:35:08 +0100
committerGitHub <noreply@github.com>2020-08-06 11:35:08 -0400
commitd7dcbab3efeeac5233c9cedb6edacc7202515449 (patch)
tree4c9a5c54a7b2c308937d94d4d6d3569daa1ccc08 /docs/examples.md
parent24590b012f72ba1a02a5b90ef6c1156606a6ea53 (diff)
docs: Improve examples (#6958)
Diffstat (limited to 'docs/examples.md')
-rw-r--r--docs/examples.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/examples.md b/docs/examples.md
index 13c15a2c7..5a323b345 100644
--- a/docs/examples.md
+++ b/docs/examples.md
@@ -2,3 +2,20 @@
In this chapter you can find some example programs that you can use to learn
more about the runtime.
+
+## Basic
+
+- [Hello World](./examples/hello_world)
+- [Import and Export Modules](./examples/import_export)
+- [How to Manage Dependencies](./examples/manage_dependencies)
+
+## Advanced
+
+- [Unix Cat](./examples/unix_cat)
+- [File Server](./examples/file_server)
+- [TCP Echo](./examples/tcp_echo)
+- [Subprocess](./examples/subprocess)
+- [Permissions](./examples/permissions)
+- [OS Signals](./examples/os_signals)
+- [File System Events](./examples/file_system_events)
+- [Testing If Main](./examples/testing_if_main)