Randomly thought of this

I might get this on a shirt, does that make me a nerd?

[java]

public class Hadouken {

public Hadouken(){

try{

Hadouken attack = new Hadouken().down().foward().punch();

}catch(Exception e){}

}

public Hadouken down(){

System.out.print("HA");

return this;

}

public Hadouken foward() throws Exception{

System.out.print("DOU");

throw new Exception("C-C-C-C-C-COMBO BREAKER!");



}

public Hadouken punch(){

System.out.print("KEN!");

return this;

}

}

[/java]

2 Likes

Totally xD Why you not just write “I wanna nerf Hadouken” ^^

1 Like



public class Nerd {



private String name;



public Nerd(String name) {

this.name = name;

}



public String getName() {

return name;

}



}



public class Main {



public static void main(String[] args) {

Nerd allman = new Nerd(“allman”);

System.out.println("The most nerd in the world —> "+allman.getName());

}



}





xD

1 Like