All pastes #63013 Raw Edit

Unnamed

public text v1 · immutable
#63013 ·published 2006-06-07 19:25 UTC
rendered paste body
				Thread tt;
				tt = new Thread(testing());
				tt.start();




	public static String testing()
	{
		for (int testingx = 0; testingx < 10000; testingx++)
		{
			System.out.println(":-)");
		}
		return("Hello! :-)");
	}