Mon Jul 20 02:55:02 AM MDT 2026 I’m thinking again, life tends to feel like a bunch of bullshit at times. I don’t know what to do about that. It would be nice to be able to figure out whatever there is to figure out, but again I don’t know how to do that! I’m feel so fucking frustrated right now. I wish I had a clue about how to get over it, get through it, do something about it. But what can I do exactly? I don’t know. I don’t have a clue! It’s bugging the hell out of me right now. I wish I could do something about it, but again I don’t know what to do. Gah! What are you meant to do with this life when you just feel helpless? I wish I knew. I wish I could…do something about these feelings I am having at the moment. I don’t know what to do with them though? So many thoughts, emotions, feelings, all flooding into my head at once. Too much to focus on, too much to do anything with. I feel overwhelmed. What am I going to do about it? I need to figure out something. If I could do someth...
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