Go myPrintf()

1 개요[ | ]

Go myPrintf()
Go
CPU
-1.0s
MEM
-0M
-1.0s
Copy
package main

import "fmt"

func main() {
	myPrintf("%s %s %d %d", "hello", "world", 1, 2)
}

func myPrintf(format string, args ...interface{}) {
	fmt.Printf(format, args...)
}
hello world 1 2

2 같이 보기[ | ]