Last Comment Wins!

Status
Not open for further replies.

WaLLy

Lieutenant General
|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();
    }
  }
}

Opened this thread and I got a warning from McAfee.

Kreubs code probably breaks McAfee XD
 

The Moment

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