1:
val pow : x : Expression -> y : Expression -> Expression
Возводит x в степень y
1: 2: 3: 4: 5: 6: 7:
let x = "4*x" |> Infix.parseOrUndefined let y = 3Q let newExpr = Operators.pow x y newExpr |> Infix.format |> printfn "%s"
64*x^3