Files
deep_go/lessons/garbage_collector/memory_ballast/main.go

9 lines
99 B
Go
Raw Normal View History

package main
func main() {
ballast := make([]byte, 2<<30)
_ = ballast
// implementation ...
}