aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.fwd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fib.fwd')
-rw-r--r--examples/fib.fwd31
1 files changed, 18 insertions, 13 deletions
diff --git a/examples/fib.fwd b/examples/fib.fwd
index 7084b9d..e6d6ee6 100644
--- a/examples/fib.fwd
+++ b/examples/fib.fwd
@@ -1,25 +1,30 @@
-/* heh, this technically speaking works, but I guess the compiler can't collapse
- * frames so the bifurcating nature of fibonacci just gets mapped to a linear
- * sequence of calls, taking up way more stack space than a typical, returning,
- * function */
+/*
+ * Currently the compilation process requires a bit of manual intervention.
+ * For this particular example, run something like this from the root dir:
+ *
+ * ./fwd examples/fib.fwd > /tmp/fib.c
+ * gcc -Lmod -Iinclude -Ilib -Wl,-rpath=mod -O2 /tmp/fib.c -lfwdio -o /tmp/fib
+ * /tmp/fib
+ *
+ */
-fib(int n, (int) res)
+/* modules are just libraries that can be loaded at runtime */
+import "../mod/libfwdio.so"
+
+fib(i64 n, (i64) res)
{
if n < 2 {
res(1);
} else {
- fib(n - 1) => int f1;
- fib(n - 2) => int f2;
+ fib(n - 1) => i64 f1;
+ fib(n - 2) => i64 f2;
res(f1 + f2);
}
}
-/* 'extern' println */
-fwd_println(auto n);
-fwd_copy(auto n, (auto, auto) n1);
-
main()
{
- fib(6) => int n;
- fwd_println(n);
+ fib(42) => i64 n;
+ print_i64(n);
+ print_nl();
}