Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "fmt"
  5. )
  6.  
  7. func その名は(名探偵, コナン string) {
  8. fmt.Println(名探偵 + "=" + コナン)
  9. }
  10.  
  11. func main() {
  12. 名探偵 := "コナン"
  13. コナン := "新一"
  14. その名は(名探偵, コナン)
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement