converting strings to numbers
Create the main.go file with the following content:
package main
import (
"fmt"
"strconv"
)
const bin = "00001"
const hex = "2f"
const intString = "12"
const floatString = "12.3"
func main() {
// Decimals
res, err := strconv.Atoi(...
blog.cloudnativefolks.org2 min read