about summary refs log tree commit diff stats
path: root/tutorial/task4.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-20 14:35:18 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-20 14:35:18 -0700
commit3dead5564151b9f3f02cac638b6e526082d9818b (patch)
tree6272eb281bf86d8dc5c393bb04004a893cd57793 /tutorial/task4.mu
parentf263a2070b769a6365d442fd5f4a2fb6fefac3c8 (diff)
downloadmu-3dead5564151b9f3f02cac638b6e526082d9818b.tar.gz
task: variables in registers vs memory
Diffstat (limited to 'tutorial/task4.mu')
-rw-r--r--tutorial/task4.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/task4.mu b/tutorial/task4.mu
index ca8da8f4..786219cf 100644
--- a/tutorial/task4.mu
+++ b/tutorial/task4.mu
@@ -8,7 +8,7 @@ fn the-answer -> _/eax: int {
 
 fn test-the-answer {
   var result/eax: int <- the-answer
-  check-ints-equal result, 0x2a, "F - the-answer should return 42, but didn't."
+  check-ints-equal result, 0x2a, "F - the-answer should return 42, but didn't"
 }
 
 fn main {