static L countTo(int n) { L l = emptyList(n); for (int i = 1; i <= n; i++) l.add(i); ret l; }