There Should Be Space Wed Feb 12 20:54:57 MST 2020 There should be space where nothing makes sense and that’s okay with everyone. There should be a place where absolutely nothing matters, and we don’t have a clue what’s going on, but again it doesn’t matter…so we survive. Things like that. Isn’t that okay? Isn’t that what this life should be about? Something like that.
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