No Reason Kyle Eggleston I’ve come to the conclusion that there’s no reason to be alive. There’s no actual purpose to it. Why should there be a purpose to all this suffering and death. It doesn’t make any sense. There’s no reason for it at all. Step out of the box once in a while and see for yourself there’s nothing to be seen. If there’s nothing to be seen, then there’s nothing to be understood and we are good.
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