hi all
How do I add parameters to a function such as :
function pow(x: integer , y:integer ){
x: integer
y: integer
pow:integer
for (i = 1 ;i<= y ;i +=1)
pow +=x*y
return pow
}
i want add a parameters for a function in C2 and return value .how i can?