The main program
A Lambda-Flow program always contains one and only one main program.
main := lambda in : int. begin inst is filter (in) extract o; out output inst; end; |
FEATURES
|
The main module has inputs and outputs. They are connected to the IOs ports of the implementation
The main inputs are always typed. Without this indication, LambdaFlow cannot find alone the type of the inputs. The other abstractions can be or not typed.