@ -296,8 +296,12 @@ func currency(str... string) string {
if len(str) < 2 {
return "ERR"
}
//default to $
symbol := "$"
switch (str[1]){
case "JPY":
symbol = "¥"
break
case "EUR":
symbol = "€"