Episode 221: Indiana Rich!
- Atheists slam school nurse for refusing to treat student who won’t stand for Pledge of Allegiance
- Walmart uses Georgia ‘conscience clause’ to refuse woman’s miscarriage treatment
- Herman Cain’s Website: Demon-Possessed Gays Need Exorcisms
- Islamic Extremists Have Seized Control Of U.S. Cities, Says NRA Seminar
- Gary Cass: Satan Using ‘Gay Abortionists’ To ‘Attack Humanity’
- Bob Vander Plaats Warns Of Divine Retribution For Wiccan Prayer In Iowa State Capitol
- Italian police: Muslim migrants threw Christians overboard
Reasoncon: http://reasonnc.com/
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