Euclid    
     

You can define functions and execute them at a later time. Functions can have any number of arguments. You can nest functions, as well.

Examples:

Enter command: f(x) = x^3

Enter command: g(x,y) = x + y

Enter command: f(2)

Decimal Result = 8.0000000000

Enter command: g(3, 4)

Decimal Result = 7.0000000000

Enter command: g(f(2), 5)

Fractional Result = 13


 Euclid    
Copyright © 2003-2006 Kevin L. Gong