mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:11:49 +08:00
15 lines
198 B
Go
15 lines
198 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
var origS string = "Hi there! "
|
|
var newS string
|
|
|
|
newS = strings.Repeat(origS, 3)
|
|
fmt.Printf("The new repeated string is: %s\n", newS)
|
|
}
|