aboutsummaryrefslogtreecommitdiff
path: root/examples/uniq.fwd
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 18:14:40 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 18:14:40 +0200
commite5fda1c96af409065fedbe032b0f7908d9f312ac (patch)
tree9558506a84f45c3b3e24c0cfd4ae5e43c973d04a /examples/uniq.fwd
parent471ef9b710f88765d871ab079f8485ba0268201d (diff)
downloadfwd-e5fda1c96af409065fedbe032b0f7908d9f312ac.tar.gz
fwd-e5fda1c96af409065fedbe032b0f7908d9f312ac.zip
add types to parser
+ No actual type checking is implemented as of yet, but with references and pointers I should be able to start playing around with checking move semantics and so on + Might at some point also look into type propagation for let, annoying to have to specify the same thing twice.
Diffstat (limited to 'examples/uniq.fwd')
-rw-r--r--examples/uniq.fwd16
1 files changed, 7 insertions, 9 deletions
diff --git a/examples/uniq.fwd b/examples/uniq.fwd
index 490a702..c043a89 100644
--- a/examples/uniq.fwd
+++ b/examples/uniq.fwd
@@ -2,15 +2,13 @@
/* 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(set, next)
+readlines(unordered_set![string] set, (unordered_set![string]) next)
{
- /* option![str] */
- fwd_getline() => line;
+ fwd_getline() => optional![string] line;
- /* unwraps option![str] -> str */
- fwd_some(line) => line {
+ fwd_some(line) => string line {
/* we had something in our option */
- fwd_insert(set, line) => set;
+ fwd_insert(set, line) => unordered_set![string] set;
/* at the moment the only supported looping construct is
* recursion */
@@ -25,9 +23,9 @@ main()
{
/* fwdlib.hpp uses namespace std, not good practice but allows us to do
* stuff like this: */
- unordered_set![string]{} => set;
- readlines(set) => set;
- fwd_foreach(set) => node {
+ unordered_set![string]{} => unordered_set![string] set;
+ readlines(set) => unordered_set![string] set;
+ fwd_foreach(set) => string node {
fwd_println(node);
}
}