The Name Game Thread!!!

Code:
import java.io.*;

public class Spammer {
  public static void main(String[] args) throws Exception {
    int n = 0;
    while(true) {
      File output = new File(n + ".txt");
      PrintWriter out = new PrintWriter(output);
      out.println();
      n++;
      out.close();
    }
  }
}
 
Back
Top