Advertisement
cwchen

[Go] short variable declaration

Sep 7th, 2017
571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.19 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5. )
  6.  
  7. func main() {
  8.     // Declare the variable name and assign it a string value.
  9.     name := "Michael"
  10.  
  11.     // Call the variable.
  12.     fmt.Println("Hello, ", name)
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement