Programming language functions

No, you can’t call flows from a formula. What is being requested here is the ability to define functions to call later. It could look something like:

  1. Declare global function with name sqr and one argument called n
    function body being $#n * #n$
  2. Use that function in some other formula: $gf(sqr, 4)$

Basically, you’d have a reusable block of code that could be as complex as you want that transforms some arguments into a result value.

2 Likes