diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-20 14:49:10 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-20 14:49:10 -0700 |
commit | 8b87d2244e89fdbd1b4c8c59cfd69f07c5541431 (patch) | |
tree | a2f8899e702b8d8afd18e3aa8e46c573247ffc0c /tutorial | |
parent | c9c5faef241f4fc700c2c4202d938f7f4baec393 (diff) | |
download | mu-8b87d2244e89fdbd1b4c8c59cfd69f07c5541431.tar.gz |
.
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/index.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tutorial/index.md b/tutorial/index.md index 50f5f24e..6d0177e0 100644 --- a/tutorial/index.md +++ b/tutorial/index.md @@ -164,8 +164,9 @@ In programming there is no penalty for making mistakes, and once you arrive at the correct solution you have it forever. As always, [feel free to ping me and ask questions or share your experience](http://akkartik.name/contact). -Mu statements can have _outputs_ on the left (before the `<-`) and _inouts_ on -the right (after the instruction name). +Mu statements can have _outputs_ on the left (before the `<-`) and _inouts_ +(either inputs or outputs) on the right, after the instruction name. The order +matters. One gotcha to keep in mind is that numbers in Mu must always be in hexadecimal notation, starting with `0x`. Use a calculator on your computer or phone to |