On http://golf.shinh.org I found this "Enum Answer" to a Java code golf problem, and it won't work for me.
enum R{R;System z;{try{for(;;)for(int c=z.in.read(),i=47<c&c<58?c-48:1;i-->1/~c;)z.out.write(c);}catch(Exception e){}}}
Whenever I try to copy and paste the answer to the problem myself, I get (as expected) runtime errors and the answer fails.
Exception in thread "main" java.lang.NoClassDefFoundError: test
Caused by: java.lang.ClassNotFoundException: test
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
Could not find the main class: test. Program will exit.
The user teebee has answered many questions using this pattern and therefore always seems to get the lowest scores for Java. I want to duplicate their pattern and decrease my scores. Any ideas??