fermi

A minimalist calculator for estimating with distributions
Log | Files | Refs | README

commit bc40428f8afc5034826845aecfe0613f51f7c882
parent 4204db0c322c8855254bc494279421ac2d34ec96
Author: NunoSempere <nuno.semperelh@protonmail.com>
Date:   Sat, 11 May 2024 12:24:45 +0100

tweak error msg

Diffstat:
Mf.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/f.go b/f.go @@ -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 }