1.30. The "the" keyword

When naming functions, it annoying to write the signature of the function when there is clearly only one function of a given name. in this special case you can use the keyword 'the' to specify you mean that function.
Start felix section to tut/examples/tut_beg138a.flx[1 /1 ]
     1: #line 1599 "./lpsrc/flx_tutorial.pak"
     2: #import <flx.flxh>
     3: 
     4: fun f(x:int):int=>x*x;
     5: fun apply[s,d] (f:s->d) (x:s) : d => f x;
     6: 
     7: print (apply (the f) 4); endl;
     8: 
End felix section to tut/examples/tut_beg138a.flx[1]