golang type casting code example
Example: go type casting
package main
import (
"fmt"
)
func main() {
Name := []byte("John Doe")
fmt.Println("My name is", string(Name))
}
package main
import (
"fmt"
)
func main() {
Name := []byte("John Doe")
fmt.Println("My name is", string(Name))
}