core_testing3/postfix_test8.scala
changeset 401 9471c3b7ea02
parent 346 663c2a9108d1
equal deleted inserted replaced
400:e48ea8300b2d 401:9471c3b7ea02
       
     1 import C3a._
       
     2 
       
     3 assert(compute(syard(split("3 + 4 * ( 2 - 1 )"))) == 7)
       
     4 assert(compute(syard(split("10 + 12 * 33"))) == 406)
       
     5 assert(compute(syard(split("( 5 + 7 ) * 2"))) == 24)
       
     6 assert(compute(syard(split("5 + 7 / 2"))) == 8)
       
     7 assert(compute(syard(split("5 * 7 / 2"))) == 17)
       
     8 assert(compute(syard(split("9 + 24 / ( 7 - 3 )"))) == 15)