removed main() from multiply-strings

This commit is contained in:
Gleb Koval 2021-11-07 21:12:30 +00:00
parent 5e09bbb63e
commit 84d1564464
No known key found for this signature in database
GPG Key ID: DF27F6A77C48FDA0
1 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,3 @@ func multiply(num1 string, num2 string) string {
}
return sum
}
func main() {
println(multiply("123456", "0"))
}