Remove add function

This commit is contained in:
Naveen Gogineni 2022-08-26 21:00:38 -04:00 committed by Dan Buch
parent 96e41a628a
commit e48d377e62
Signed by: meatballhat
GPG Key ID: A12F782281063434

View File

@ -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)