Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Advanced Hello World Program
#1
Code:
import java.lang.annotation.SafeVarargs;

class AdvHWP<T> implements Serializable {
      
     private transient volatile boolean running;

     @SafeVarargs
     public static void main(final String... args){
            new Thread(){
                 public synchronized void run(){
                        this.running = true;
                 }
            }.start();
            if(T instanceof String) {
                final List<T> list = Collections.unmodifiableList(Arrays.asList("Hello World!"));
                System.out.print(list.get((byte) 0));
            } else {
                 running = false;
                 return;
            }
            System.exit((byte) 0);
     }

}

Best Hello World program that anyone could ever skid. And now, it's here, on The Bytecode Club.
Reply
 


Messages In This Thread
Advanced Hello World Program - by Null - 10-25-2014, 05:14 AM
RE: Advanced Hello World Program - by zooty - 10-25-2014, 05:46 AM
RE: Advanced Hello World Program - by Bibl - 10-25-2014, 08:10 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website