“GO tipo casting” Código de respuesta

GO tipo casting

package main

import (
	"fmt"
)

func main() {
	Name := []byte("John Doe")
	fmt.Println("My name is", string(Name))
}
Restu Wahyu Saputra

GO tipo casting

// variable of float type
var floatValue float = 9.8

// convert float to int
var intValue int = int(floatValue)
SAMER SAEID

Respuestas similares a “GO tipo casting”

Preguntas similares a “GO tipo casting”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código