Thu Jun 18 08:35:39 AM MDT 2026 Today is simply a day, what more do you want from it? I’m not sure. It will be whatever it will be and there’s nothing else that can matter because of it. We have to accept everything that comes from today and don’t worry about what tomorrow will bring. Today will never come again. The past is the past for a reason. It will never cease to exist. The past will forever be the past and we cannot overcome that. It isn’t a curse or anything, but a common foe that we must try and overcome. This life will be whatever it wants to be. It will turn out the way it’s meant to turn out. I don’t have a clue how either of those statements work, they just do. So it will always be whatever it wants to be. We don’t have a choice in the matter. Life will come and life will go, it won’t make a difference if it happens today or tomorrow. It will always take place and happen.
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