Skip to content

Instantly share code, notes, and snippets.

@yumed15
Created November 22, 2023 10:03
Show Gist options
  • Save yumed15/a6a7c0125ee270b6ef48143c7662e5d1 to your computer and use it in GitHub Desktop.
Save yumed15/a6a7c0125ee270b6ef48143c7662e5d1 to your computer and use it in GitHub Desktop.
package main
func main() {
const constSize = 10
var varSize = 10
s1 := []int32{}
// s2 escapes to heap: non-constant size
s2 := make([]int32, varSize)
s3 := make([]int32, constSize)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment