我安装了chrome扩展程序 - chrome logger。
下载并在我的php页面中加入totalPrice :: Product -> Integer -> Float
totalPrice product count = case product of
Ramen
| x >= 200 -> 1.35*x
| x > 100 -> 1.4*x
| x > 30 -> 1.5*x
| x > 10 -> 1.8*x
| x >= 0 -> 2.0*x
| otherwise -> 0
Chips
| x >= 21 -> 2.35*x
| x > 10 -> 2.5*x
| x > 5 -> 2.7*x
| x > 2 -> 2.95*x
| x >= 0 -> 3.0*x
| otherwise -> 0
where x = fromIntegral count
。
写:
ChromePhp.php
没什么好笑的 - 控制台是空的。
有什么不对或丢失?