package pds import ( "flag" ) var nFlag = flag.Int( "n", 1_000, "The number of iterations to execute", ) func MainTest() { flag.Parse() n := *nFlag builder := NewListBuilder[int]() for i := 0; i < n; i++ { builder.Prepend(i) } }