tweak error msg

This commit is contained in:
NunoSempere 2024-05-11 12:24:45 +01:00
parent 4204db0c32
commit bc40428f8a

2
f.go
View File

@ -147,7 +147,7 @@ EventForLoop:
default:
single_float, err1 := strconv.ParseFloat(words[0], 64)
if err1 != nil {
fmt.Println("Trying to multiply by a scalar, but scalar is not a float")
fmt.Println("Unrecognized command")
fmt.Println(error_msg_cont)
continue EventForLoop
}