aboutsummaryrefslogtreecommitdiff
path: root/examples/guard.fwd
blob: cf9578ebb1d1a45f4db2a9e27d7a8222f3a17ed9 (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
/* 'auto' is a special type that currently is in place of generics, will
 * eventually be replaced but this is good enough to play around with */
fwd_println(auto s);

guard(bool cond, () err, () ok)
{
	if cond {
		err();
	} else {
		ok();
	}
}

try_print_one(int a)
{
	guard(a < 1) => {
		fwd_println("smaller than 1");
	} => ;

	guard(a > 1) => {
		fwd_println("larger than 1");
	} => ;

	fwd_println(a);
}

main()
{
	try_print_one(0);
	try_print_one(1);
	try_print_one(2);
}