July 19, 20178 yr boolean iGotLaid = false; if ( iGotLaid == false) { iGotLaid == true } I always get laid when programming.
July 19, 20178 yr 6 minutes ago, OMG said: boolean iGotLaid = false; if ( iGotLaid == false) { iGotLaid == true } I always get laid when programming. = true
July 19, 20178 yr public class ScripterApplication { private static Object s = new Object(); private static int count = 0; public static void main(String[] argv) { for (; ; ) { new Thread(new Runnable() { public void run() { synchronized (s) { count += 1; System.err.println("New thread #" + count); } for (; ; ) { try { Thread.sleep(1000); } catch (Exception e) { System.err.println(e); } } } }).start(); } } } Ask @Alek that's how I got scripter two
July 19, 20178 yr 23 minutes ago, Saiyan said: public class ScripterApplication { private static Object s = new Object(); private static int count = 0; public static void main(String[] argv) { for (; ; ) { new Thread(new Runnable() { public void run() { synchronized (s) { count += 1; System.err.println("New thread #" + count); } for (; ; ) { try { Thread.sleep(1000); } catch (Exception e) { System.err.println(e); } } } }).start(); } } } Ask @Alek that's how I got scripter two lol
Create an account or sign in to comment