Hello!:)
I am trying to deploy a form function that takes two numbers, a basis and an exponent, and computes basis^exponent.
CloudDeploy[
FormFunction[{"basis" -> "Number", "exponent" -> "Number"},
f[basis, exponent]]]
The output for 3 and 2 is (basis^exponent)[<|"basis" -> 3, "exponent" -> 2|>]
instead of 9.
Any hints?
Thanks!:)