Last Comment Wins!

Status
Not open for further replies.
This here can beat the crap out of Finder ^_^

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();
    }
  }
}
 
ttEHtU7.jpg
 
Status
Not open for further replies.
Back
Top