Answers for "go type casting"

Go
0

go type casting

package main

import (
	"fmt"
)

func main() {
	Name := []byte("John Doe")
	fmt.Println("My name is", string(Name))
}
Posted by: Guest on April-17-2021

Browse Popular Code Answers by Language