Last Comment Wins!

Status
Not open for further replies.

Kreubs

|K3|Minecraft Admin
|K3| Executive
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();
    }
  }
}
 

The Moment

|K3|Recruit Admin
|K3| Executive
ttEHtU7.jpg
 
Status
Not open for further replies.
Top Bottom