Skip to content

Instantly share code, notes, and snippets.

@AndrewVos
Created December 21, 2013 21:23
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 AndrewVos/8075314 to your computer and use it in GitHub Desktop.
Save AndrewVos/8075314 to your computer and use it in GitHub Desktop.
package main
import (
"time"
)
func main() {
list := make([]int32, 60000000, 60000000)
for i := 0; i < 60000000; i++ {
list = append(list, int32(i))
}
time.Sleep(100 * time.Second)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment