From 7da7e94720e1e90a1ea9f18ae423760c221f5637 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 24 Oct 2021 00:10:33 -0700 Subject: [PATCH] . --- tutorial/index.md | 7 ++++--- 1 file 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.