9 lines
98 B
Go
9 lines
98 B
Go
package helpers
|
|
|
|
import "strconv"
|
|
|
|
func Atoi(s string) int {
|
|
n, _ := strconv.Atoi(s)
|
|
return n
|
|
}
|