diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-24 00:10:33 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-24 00:10:33 -0700 |
commit | 7da7e94720e1e90a1ea9f18ae423760c221f5637 (patch) | |
tree | 09e775a7c9d73b45553631267fa0b5418efe6306 /tutorial | |
parent | 7d28bbe2f2c42a6b60ab99fb6a957098409c36f1 (diff) | |
download | mu-7da7e94720e1e90a1ea9f18ae423760c221f5637.tar.gz |
.
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/index.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tutorial/index.md b/tutorial/index.md index 8d295369..9e30c9c6 100644 --- a/tutorial/index.md +++ b/tutorial/index.md @@ -122,9 +122,10 @@ quotes. ## Task 4: your first Mu statement Mu is a statement-oriented language. Most statements translate into a single -instruction to the x86 processor. Read the first two sections of the [Mu -syntax description](https://github.com/akkartik/mu/blob/main/mu.md) (about -functions and variables) to learn a little bit about it. +instruction to the x86 processor. Quickly read the first two sections of the +[Mu syntax description](https://github.com/akkartik/mu/blob/main/mu.md) (about +functions and variables) to learn a little bit about it. It's ok if it doesn't +all make sense just yet. We'll reread it later. Here's a skeleton of a Mu function that's missing a single statement. |