From e48d377e62a52ed428ce6901161d5c729fc10d49 Mon Sep 17 00:00:00 2001 From: Naveen Gogineni Date: Fri, 26 Aug 2022 21:00:38 -0400 Subject: [PATCH] Remove add function --- help.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/help.go b/help.go index 14f0ff4..814922f 100644 --- a/help.go +++ b/help.go @@ -422,10 +422,6 @@ func subtract(a, b int) int { return a - b } -func add(a, b int) int { - return a + b -} - func indent(spaces int, v string) string { pad := strings.Repeat(" ", spaces) return pad + strings.Replace(v, "\n", "\n"+pad, -1)