Skip to content

Instantly share code, notes, and snippets.

@yumed15
Created November 22, 2023 09:57
Show Gist options
  • Save yumed15/a1c6566e682bc5e10e5dd396d8aee925 to your computer and use it in GitHub Desktop.
Save yumed15/a1c6566e682bc5e10e5dd396d8aee925 to your computer and use it in GitHub Desktop.
package main
type smallT struct {
a [1000 * 1000]int32 // 4MB
}
func main() {
l1 := smallT{}
l2 := make([]int32, 0, 15*1000) // 60KB
_ = l1
_ = l2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment