docs: add language tour outline

This commit is contained in:
rvcas 2022-11-22 20:46:42 -05:00
parent c8c670d986
commit c37eaca763
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
20 changed files with 44 additions and 0 deletions

View File

@ -2,6 +2,25 @@
- [Introduction](./introduction.md)
- [Getting Started](./getting-started.md)
- [Language Tour](./language-tour.md)
- [Comments](./language-tour/comments.md)
- [String](./language-tour/string.md)
- [Bool](./language-tour/bool.md)
- [Int](./language-tour/int.md)
- [Data](./language-tour/data.md)
- [Variables](./language-tour/variables.md)
- [Blocks](./language-tour/blocks.md)
- [List](./language-tour/list.md)
- [Tuple](./language-tour/tuple.md)
- [Matching](./language-tour/matching.md)
- [Functions](./language-tour/functions.md)
- [Custom types](./language-tour/custom-types.md)
- [Option](./language-tour/option.md)
- [Assert](./language-tour/assert.md)
- [Check](./language-tour/check.md)
- [Todo](./language-tour/todo.md)
- [Constants](./language-tour/constants.md)
- [Type aliases](./language-tour/type-aliases.md)
- [Untyped Plutus Core](./uplc.md)
- [Syntax](./uplc/syntax.md)
- [Command-line utilities](./uplc/cli.md)

View File

@ -0,0 +1,7 @@
# Language Tour
In this section we explore the fundamentals of the
Aiken language. We'll go over syntax, types, control flow,
and more. If you have prior programming experience this should
be enough to get you started with Aiken. We also at times touch on
how things behave and are represented at runtime.

View File

@ -0,0 +1 @@
# Assert

View File

@ -0,0 +1 @@
# Blocks

View File

@ -0,0 +1 @@
# Bool

View File

@ -0,0 +1 @@
# Check

View File

@ -0,0 +1 @@
# Comments

View File

@ -0,0 +1 @@
# Constants

View File

@ -0,0 +1 @@
# Custom types

View File

@ -0,0 +1 @@
# Data

View File

@ -0,0 +1 @@
# Functions

View File

@ -0,0 +1 @@
# Int

View File

@ -0,0 +1 @@
# List

View File

@ -0,0 +1 @@
# Matching

View File

@ -0,0 +1 @@
# Option

View File

@ -0,0 +1 @@
# String

View File

@ -0,0 +1 @@
# Todo

View File

@ -0,0 +1 @@
# Tuple

View File

@ -0,0 +1 @@
# Type aliases

View File

@ -0,0 +1 @@
# Variables