diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-28 16:40:41 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-28 16:40:41 +0200 |
commit | bf804fa1e18c717cec3944f5edea858a2f3a015d (patch) | |
tree | fa2a9c07f088fa2c1be97cb6e7d078b8eac7172f /examples | |
parent | 98c3d8fbc924c62e2be571ed71b22053b9e8baa3 (diff) | |
download | fwd-bf804fa1e18c717cec3944f5edea858a2f3a015d.tar.gz fwd-bf804fa1e18c717cec3944f5edea858a2f3a015d.zip |
enough type checking for all examples to pass
Diffstat (limited to 'examples')
-rw-r--r-- | examples/guard.fwd | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/guard.fwd b/examples/guard.fwd index 6af570d..cf9578e 100644 --- a/examples/guard.fwd +++ b/examples/guard.fwd @@ -1,7 +1,6 @@ -/* 'any' doesn't actually exist but at the moment I'm not checking types so as - * long as there's some type identifier here the compiler will not complain, - * will eventually have to fix */ -fwd_println(any a); +/* '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) { |