Skip to content

Instantly share code, notes, and snippets.

@wari
Last active January 3, 2016 07:59
Show Gist options
  • Save wari/8433558 to your computer and use it in GitHub Desktop.
Save wari/8433558 to your computer and use it in GitHub Desktop.
// See this running @ http://play.golang.org/p/PN7GapMy3q
package main
import "fmt"
func main() {
你好 := "Hello"
world := "世界"
问好(你好, world)
}
func 问好(排列 ...string) {
for _, := range 排列 {
fmt.Printf("%s ", )
}
fmt.Printf("\n")
}
@wari
Copy link
Author

wari commented Jan 15, 2014

May not be semantically correct, since I don't know Chinese, but I just want to see how far I can take this. -> http://play.golang.org/p/PN7GapMy3q

@welldan97
Copy link

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment