leesugil / symbolic

Symbolic calculator for arithmetic operations with fractions
GNU General Public License v3.0
1 stars 0 forks source link

general unary, binary, ternary operations #22

Open leesugil opened 4 months ago

leesugil commented 4 months ago

i want something like

unary("a", "f(", ")")

to yield

f(a)

just like how it can be utilized as

unary("x", "-", "")
-x

also similarly,

binary("a", "b", " * ")
a * b

and generally

func("f", ...)      // formatted input
f(...)

as core functions for this program