I want to create operator in string and show the value as int.
// ex:
val str= "1+2*3" , print out -> "1+2*3"
// i want:
print out -> 7
however i tried to create kotlin code like:
val str= "${1+2*3}" or val str= "1+2*3".toInt
but all this don't work.
any help???