update: use new go literals

This commit is contained in:
Inanc Gumus
2019-09-03 23:51:15 +03:00
parent 311baef9e4
commit 1c31ec1fcc

View File

@ -13,7 +13,10 @@ import (
type huge struct {
// about ~200mb
games [10000000]game
games [10_000_000]game
// if this syntax doesn't work on your system, type it as:
// games [10000000]game
}
// only copies a single pointer.