1 Matching Annotations
- Mar 2023
-
-
If we want to evaluate it, we need to turn this into a function call. That’s where the exclamation point comes in
So when you're defining a zero-arity function in unison, prepending an ! executes the function.
E.g.
func = '42
!func -- reports 42
-