“Faire une corde” Réponses codées

Variable Golang en chaîne

package main

import (
	"fmt"
)

func main() {
	hello := "hello"
	helloWorld := fmt.Sprintf("%s world", hello)
	fmt.Println(helloWorld)
}
Bearbite

Faire une corde

// using var
var name1 = "Go Programming"

// using shorthand notation
name2 := "Go Programming"
SAMER SAEID

Go Golang String

// Program to create a string in Golang

package main
import "fmt"

func main() {

  // creating string using var
  var message1 = "Hello,"

  // creating string using shorthand notation
  message2 := "Welcome to Programiz"

  fmt.Println(message1)
  fmt.Println(message2)
}
SAMER SAEID

Strings à Golang

str := "Hello"
Harendra

Réponses similaires à “Faire une corde”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code