package
0.0.0-20241126132414-a6474f9c9b52
Repository: https://github.com/talgat-ruby/exercises-go.git
Documentation: pkg.go.dev

# README

Problem 10

Sum two strings. If any of the strings cannot converted return an error as a second parameter: string: %value% cannot be converted

sum("1", "2") // "3", nil

sum("10", "20") // "30", nil

sum("a", "2") // "", "string: a cannot be converted"