From dfd2ed38f24b82da102d7fd899fa58bb0a791023 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 13 Jul 2015 20:33:39 -0700 Subject: 1773 - update all mu recipes to new-default-space Turns out to not affect memory utilization or run-time. At all. But still looks nicer and requires less fudging on our part. --- 063list.mu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '063list.mu') diff --git a/063list.mu b/063list.mu index 22343b93..b9bc9c53 100644 --- a/063list.mu +++ b/063list.mu @@ -10,7 +10,7 @@ container list [ # result:address:list <- push x:location, in:address:list recipe push [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space x:location <- next-ingredient in:address:list <- next-ingredient result:address:list <- new list:type @@ -23,7 +23,7 @@ recipe push [ # result:location <- first in:address:list recipe first [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space in:address:list <- next-ingredient result:location <- get in:address:list/deref, value:offset reply result:location @@ -31,7 +31,7 @@ recipe first [ # result:address:list <- rest in:address:list recipe rest [ - default-space:address:array:location <- new location:type, 30:literal + new-default-space in:address:list <- next-ingredient result:address:list <- get in:address:list/deref, next:offset reply result:address:list -- cgit 1.4.1-2-gfad0