aboutsummaryrefslogtreecommitdiff
path: root/examples/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/list.c')
-rw-r--r--examples/list.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/list.c b/examples/list.c
index a09588b..84205e2 100644
--- a/examples/list.c
+++ b/examples/list.c
@@ -9,15 +9,15 @@ int main()
struct bowl *a;
data_malloc(&a, LITERAL, "Destroy capitalism");
- bowl_insert(root, a);
+ bowl_append(root, a);
struct bowl *b;
data_malloc(&b, INTEGER, 1312);
- bowl_insert(root, b);
+ bowl_append(root, b);
struct bowl *c;
data_malloc(&c, LITERAL, "Alerta, Antifascista!");
- bowl_insert(root, c);
+ bowl_append(root, c);
return bowl_free(root);
-} \ No newline at end of file
+}