about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/18.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/18.src b/examples/18.src
index 6d75e30..c050f8c 100644
--- a/examples/18.src
+++ b/examples/18.src
@@ -3,7 +3,7 @@ extern malloc = (i64) => *i64;
 extern free = (*i64) => void;
 
 let main = () => i64 {
-	let x = malloc(128);
+	let x = malloc(24);
 	(*(x+0)) = 10;
 	(*(x+1)) = 20;
 	(*(x+2)) = 40;