Have you ever wanted to escape this world and simply die or get away from it? Yeah, that's how I feel at times. I don't know what to do about it. I need to see a therapist or something. I'm on medication, but that doesn't feel like it's doing enough for me. So I have to figure out...something to do about it all. I don't know though. It scares me. I'm more than scared, if I had the ability to understand what was going on in life, then I could do that. But I can't and that simply seems that life is going to blow up at me in any second now. I wish I could overcome these thoughts and simply make sense of it. Whatever happens, I need reality to be real. Does that make sense? I'm not sure it does. I doubt anything ever makes sense to me anymore. But that's okay. It'll be okay in the end, whenever that will be. If it's not the end, it's not okay yet now is it? No, I didn't think so.
Ah now we come to ColdFusion. Such a great language to be programming websites in. I figured since I created a Hello World sample app in other languages, why not here. Here's the most basic output for ColdFusion:
<cfoutput>Hello World</cfoutput>
Of course we can make it a bit more fun... by using a variable to hold the "Hello World" in and then output that variable. In the next example, we'll use greetings as the variable.
<cfset greetings="Hello World">
<cfoutput>#greetings#</cfoutput>
So yep that's that, simple enough.
Comments
Post a Comment