It’s a life we live, that’s what’s important in this life I think, it’s the best possible outcome at least. If we don’t understand that much about life, then what are we supposed to do about it? I mean, come on now. We’re meant to live and see what’s out there, aren’t we? One would think so! If we can’t do that, then we’re lost souls on this river, or ocean even and we cannot get past it all. We are lost at sea as it were cast about the waves unable to get past whatever it is we’re meant to get past. So, let’s live life to its fullest. Don’t overthink things, don’t allow yourself to become corrupt in such thinking. Supposedly not everything is black and white, I’m not sure how that works exactly. I wish I could have a handle on it all, but I don’t know how that tends to work. So I forget whatever is meant to be and I will understand it as it’s meant to come to me, if at all.
If statements are at the core of any Java program. They allow you to make decisions in your code.
public class Cake {
final static boolean I_HATE_CAKE = false;
public static void main(String[] args) {
// TODO Auto-generated method stub
if (I_HATE_CAKE) {
System.out.println("I really don't like cake. I hate it.");
} else {
System.out.println("I enjoy cake.");
}
}
}
Comments
Post a Comment