fermi

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

commit f5e7148148bf3f4bec67bd856060ce7b07d28439
parent dfb9f3cc2543ffcda5e661db5be91c114e4d945a
Author: NunoSempere <nuno.semperelh@protonmail.com>
Date:   Sun,  9 Jun 2024 12:59:47 +0200

fix compiler errors

Diffstat:
Mf2.go | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/f2.go b/f2.go @@ -29,9 +29,10 @@ func parseLine(line string) (string, Dist, error) { case len(words) == 2 && words[0] == "*": fmt.Printf("Hello world") } + return "Lognormal", Dist{}, nil } -func joinDists(old_dist Dist, new_dist Dist, op string) (Dist, err) { +func joinDists(old_dist Dist, new_dist Dist, op string) (Dist, error) { return old_dist, nil }