Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created October 3, 2019 00:20
Show Gist options
  • Select an option

  • Save 100daysofdevops/88c8d8da6c427c7d836e0ade6050e9fc to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/88c8d8da6c427c7d836e0ade6050e9fc to your computer and use it in GitHub Desktop.
package main
import "fmt"
const (
x = iota
y = iota
z = iota
)
func main() {
fmt.Println(x)
fmt.Println(y)
fmt.Println(z)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment