The Yabasic 2.763 interpreter does not have an equivalent to the EVAL function than other BASIC dialects.
But it can be implemented, thanks to the instructions COMPILE and EXECUTE. Here is the code that allows it.
//=====================
export sub eval(c$)
static linea
linea=linea+1
c$="sub s"+str$(linea+1000000,"#######")+"():return "+c$+":end sub"
compile c$
return execute(mid$(c$,5,8))
end sub
//=====================
print eval("3*5")
print eval("5^2*(pi/sin(7))")
input "Formula to evaluate: " formula$
print eval(formula$)