Reasoncon: http://reasonnc.com/
http://www.reddit.com/r/WellWaterDrinkers/comments/31vlax/help_me_compile_a_list_of_all_the_appearances_tom/
public class FSHG {
public static void main(String[] args) {
//Setting all String variables:
String god = “GOD”;
String father = “FATHER”;
String son = “SON”;
String holyGhost = “HOLY GHOST”;
//Since the father, the son and the holy ghost are
//all god, set these variables equal to god:
father = god;
son = god;
holyGhost = god;
//Since the father, the son and the holy ghost are
//not equal to each other, set these checks:
if(father == son){
System.out.println(“ERROR”);
}
if(son == holyGhost){
System.out.println(“ERROR”);
}
if(holyGhost == father){
System.out.println(“ERROR”);
}
//To actually print out the values of the father,
//son and the holy ghost:
System.out.println(“The Father: “+father);
System.out.println(“The son: “+son);
System.out.println(“The Holy Ghost: “+holyGhost);
}
}
The output for this program:
ERROR
ERROR
ERROR
The Father: GOD
The son: GOD
The Holy Ghost: GOD