Quick actions

cmd+k|ctrl+k

Navigation

Languages

Strings / Format text / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T09:39:13Z

Updated

2019-03-26T09:39:13Z

package main

import (
	"fmt"
)

func main() {
	s := fmt.Sprintf("Hello %s", "World")
	fmt.Printf("s: '%s'\n", s)
	s = fmt.Sprintf("%d + %f = %d", 2, float64(3), 5)
	fmt.Println(s)
}
INFO