huffman-text.in 286 B

12345678910111213
  1. // Copyright 2009 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package main
  5. import "os"
  6. func main() {
  7. var b = make([]byte, 65535)
  8. f, _ := os.Create("huffman-null-max.in")
  9. f.Write(b)
  10. }