I’d like to think life would come about and make more sense than it does at the moment, but I doubt that will ever happen. Life comes and goes as it pleases and I have no idea why it does what it does. It would be nice for life to make sense. Depression and all comes about because well I don’t know why it comes about, it just does and here I am trying to over do or overcome it or something. I don’t quite understand why this life has to be the way it is.
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