blob: 490a702af415181df140e5e9692878ddc4e2310b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* not entirely sure about the final syntax just yet but something like this */
/* 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)
{
/* option![str] */
fwd_getline() => line;
/* unwraps option![str] -> str */
fwd_some(line) => line {
/* we had something in our option */
fwd_insert(set, line) => set;
/* at the moment the only supported looping construct is
* recursion */
readlines(set, next);
} => {
/* option was illegal, we've read all input there is */
next(set);
}
}
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 {
fwd_println(node);
}
}
|