aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/fib.fwd10
-rw-r--r--examples/uniq.fwd2
2 files changed, 5 insertions, 7 deletions
diff --git a/examples/fib.fwd b/examples/fib.fwd
index 4eb2e60..44ced4a 100644
--- a/examples/fib.fwd
+++ b/examples/fib.fwd
@@ -1,9 +1,7 @@
-/* heh, this technically speaking would work but the templating turns out to be
- * too much for both GCC and clang. With some manual intervention on the
- * generated code I can get fibonacci numbers up to about 35 to work, but then
- * I run out of stack space. I guess the compiler can't collapse frames so the
- * bifurcating nature of fibonacci just gets mapped to a linear sequence of
- * calls? */
+/* 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 */
fib(int n, (int) res)
{
diff --git a/examples/uniq.fwd b/examples/uniq.fwd
index c043a89..fa7504a 100644
--- a/examples/uniq.fwd
+++ b/examples/uniq.fwd
@@ -22,7 +22,7 @@ readlines(unordered_set![string] set, (unordered_set![string]) next)
main()
{
/* fwdlib.hpp uses namespace std, not good practice but allows us to do
- * stuff like this: */
+ * stuff like this without really caring about implementing "::" */
unordered_set![string]{} => unordered_set![string] set;
readlines(set) => unordered_set![string] set;
fwd_foreach(set) => string node {