12 lines
158 B
Go
12 lines
158 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
str := "Mary had a %s lamb"
|
|
txt := "little"
|
|
out := fmt.Sprintf(str, txt)
|
|
fmt.Println(out)
|
|
}
|