diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-05 13:39:31 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-05 13:39:31 +0200 |
commit | 471ef9b710f88765d871ab079f8485ba0268201d (patch) | |
tree | 430e2062f7ddb26c6777266aa1102209e5dd119b | |
parent | b881041a60927624f6a14b19079d321ae3b19f8b (diff) | |
download | fwd-471ef9b710f88765d871ab079f8485ba0268201d.tar.gz fwd-471ef9b710f88765d871ab079f8485ba0268201d.zip |
add note about functions as expressions
-rw-r--r-- | README.md | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -118,3 +118,34 @@ allowing recursion. We might even want to require that a function can be turned into a 'returning' function (being pretentious we might prefer calling it 'folding' but anyway) so that it can be interfaced from C code, for example. + +### Function calls as arguments + +At the moment, it's a bit cumbersome to directly pass closure arguments to other +functions: +``` +get_some_value() => n; +do_something_with(n) => ... +``` + +If we don't really care about the named variable `n`, it might make more sense +to provide syntactic sugar like +``` +do_something_with(get_some_value()) => ... +``` + +that translates to the same thing as above, with some internal variable 'name'. +This would also require that `get_some_value` has some limitations, like a +single closure argument that consists of a single value. This might be +particularly significant for condition checking, like +``` +// assuming this is the form of if statements, as they're still not in the +// grammar +get_some_value() => cond; +if cond {...} +``` + +versus +``` +if get_some_value () {...} +``` |