aboutsummaryrefslogtreecommitdiff
path: root/examples/uniq.fwd
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 20:00:42 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 20:00:42 +0200
commit0cef986e6958a0a6a7e94e8256b0039709aed56b (patch)
tree54d161ff8c2028a2b7819d11b1d74f6b99d01ca3 /examples/uniq.fwd
parent1466d2d1032db1e08a4105312f000a1c284d2889 (diff)
downloadfwd-0cef986e6958a0a6a7e94e8256b0039709aed56b.tar.gz
fwd-0cef986e6958a0a6a7e94e8256b0039709aed56b.zip
add trailing closures
+ Useful for guard statements, not entirely sure about the final syntax but at least they're possible
Diffstat (limited to 'examples/uniq.fwd')
-rw-r--r--examples/uniq.fwd15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/uniq.fwd b/examples/uniq.fwd
index fa7504a..5945d65 100644
--- a/examples/uniq.fwd
+++ b/examples/uniq.fwd
@@ -1,5 +1,15 @@
/* not entirely sure about the final syntax just yet but something like this */
+/* 'extern' functions (though some should probably be generic?) */
+fwd_getline(
+ (optional![string]) next);
+
+fwd_some(optional![string] o,
+ (string) next);
+
+fwd_insert(unordered_set![string] set, string line,
+ (unordered_set![string]) next);
+
/* at some point I'll probably add in a type system as well, but for now let's
* pretend we're static-dynamic (or dynamic at compiletime? dunno) */
readlines(unordered_set![string] set, (unordered_set![string]) next)
@@ -19,6 +29,11 @@ readlines(unordered_set![string] set, (unordered_set![string]) next)
}
}
+fwd_foreach(unordered_set![string] set,
+ (string) callback);
+
+fwd_println(string s);
+
main()
{
/* fwdlib.hpp uses namespace std, not good practice but allows us to do