Skip to content

Instantly share code, notes, and snippets.

@s-shin
Last active February 27, 2017 02:20
Show Gist options
  • Save s-shin/69fa1c64252c9369884d109efb6ec72f to your computer and use it in GitHub Desktop.
Save s-shin/69fa1c64252c9369884d109efb6ec72f to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func その名は(名探偵, コナン string) {
fmt.Println(名探偵 + "=" + コナン)
}
func main() {
名探偵 := "コナン"
コナン := "新一"
その名は(名探偵, コナン)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment