|
Posted July 6 2009 PHP has finally taken the plunge into the 1960s by implementing GOTO. Here's an implementation for Java. A patch for a serious Java bug. No longer needed as of June 16. Max & Michael have written a Max/MSP driver based on the multitouch code. This is a little test applet to shows the touch points as reported by the MacBook multitouch pad. The drivers seems to be able to track an impressive 11 fingers at once.
My CSS-fu is weak; please use a recent browser. Random, semi-related image by AmUnivers. |
GOTO for JavaPHP has finally taken the plunge into the 1960s by implementing GOTO. Here's an implementation for Java. This stupid hack was inspired by
Example
1 public class GotoDemo {
2 public static void main(String[] args) {
3 int i = 3;
4 System.out.println(i);
5 i = i - 1;
6 if (i >= 0) {
7 GotoFactory.getSharedInstance().getGoto().go(4);
8 }
9
10 try {
11 System.out.print("Hell");
12 if (Math.random() > 0) throw new Exception();
13 System.out.println("World!");
14 } catch (Exception e) {
15 System.out.print("o ");
16 GotoFactory.getSharedInstance().getGoto().go(13);
17 }
18 }
19 }
Running it: $ java -cp bin:asm-3.1.jar GotoClassLoader GotoDemo 3 2 1 0 Hello World! CaveatsI spent all of 30 minutes on this, so there are some caveats:
Source codeSource code here. Requires the ASM library. Comments |