1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00

Fixed string encoding

This commit is contained in:
Tim Voronov 2019-03-15 00:09:34 -04:00
parent 53549de76b
commit 803ae0ea24

View File

@ -24,7 +24,7 @@ func Param(input core.Value) string {
}
func ParamString(param string) string {
return `"` + param + `"`
return "`" + param + "`"
}
func ParamFloat(param float64) string {