Skip to content

Instantly share code, notes, and snippets.

@frankie-yanfeng
Last active October 25, 2019 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankie-yanfeng/6407007e9cc546dfabd26953ad7e4f52 to your computer and use it in GitHub Desktop.
Save frankie-yanfeng/6407007e9cc546dfabd26953ad7e4f52 to your computer and use it in GitHub Desktop.
for range without memory cost
package main
import "fmt"
func main() {
var times [5][0]int
for range times {
fmt.Println("hello")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment