Wednesday, September 2, 2026 I had to call Walmart Customer Service today regarding logging into my Walmart+ account. So that went…interestingly. An AI bot answered my phone call. They seemed quite attentive to my needs, walked me through getting into my account. We never got into my account, so I have to make a new one. But it was interesting to basically have an almost “human” conversation with an AI bot. I’m sure it will just increase in knowledge as time moves on. That will happen before the AI Uprising of 2030. Yeah that’s when I’m predicting it. We don’t have much time before that happens!
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