Oh voices, get out! Get out! Get out! You don’t need to be there telling me what to do and what not to do. Who to do it to etc. You need to go away. Is that too much to ask? I doubt it. But I fear the voices will never go away. They’ll be with me for a long time, and I don’t like that. Do the voices have a purpose in life? I doubt it. I don’t think they have a good purpose with anything. They’re evil voices after all. There isn’t anything good about them! At least I don’t think there is anything good about them. If there were, they wouldn’t be doing all the things now would they? No, I didn’t think so.
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