From cd87c0fc084c0a9ead6a96f2693735ad0be9cc48 Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Fri, 15 Mar 2024 19:54:23 -0400 Subject: [PATCH] Don't include `fibb_helper` in the produced bindings for the fibbonacci example --- fibb.json | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/fibb.json b/fibb.json index f5d4ccb..83276d3 100644 --- a/fibb.json +++ b/fibb.json @@ -1,12 +1,14 @@ [ - "fibb_helper", - { - "a": {"b": { - "0": "a", - "1": "b", - "S S n": ["fibb_helper", ["+", "a", "b"], ["+", ["+", "a", "b"], "b"], "n"] - }} - }, "fibb", - ["fibb_helper", 0, 1] + [ + "fibb_helper", + { + "a": {"b": { + "0": "a", + "1": "b", + "S S n": ["fibb_helper", ["+", "a", "b"], ["+", ["+", "a", "b"], "b"], "n"] + }} + }, + ["fibb_helper", 0, 1] + ] ] \ No newline at end of file