alrigh... i am makin somefin dat solves simple math stuff, lik addin, subtract, etc., but i cant get these darn radicals teh work. durnurd, or any guy else, think ya can help me again?

hers' teh cod, and i tink it be ma finest yet

Dim intResult
intResult = (2 + 2) 'addition
MsgBox "2 + 2 = " & intResult
intResult = (3 * 4) 'multiplication
MsgBox "3 * 4 = " & intResult
intResult = (4 - 2) 'subtraction
MsgBox "4 - 2 = " & intResult
intResult = (6 / 3) 'division
MsgBox "6 / 3 = " & intResult
intResult = (2 ^ 3) 'exponents
MsgBox "2 ^ 3 = " & intResult
intResult = (Log(4)) 'logarithms
MsgBox "log(4) = " & intResult
intResult = ((1/3)-(1/4))/((1/8)+(1/2)) 'complex fraction
MsgBox "((1/3)-(1/4))/((1/8)+(1/2)) = " & intResult
intResult = (root(36)) 'SquareRoot
MsgBox " Radical 36 = " & intResult
hepl be greatly appreciated!!
