Life isn’t real, it’s an illusion created by someone who wants to study us all. It is a hologram of sorts, nothing is real. Think of The Matrix, they were onto something. I’m not saying it’s exactly how they interpreted life, but I have a feeling they aren’t that far off. If you were to wake up one day, and realize that all of your life was a falsehood, that none of it was real. What would you do? Simulation theory is the hypothesis that our entire universe is an artificial, hyper-realistic computer program created by a vastly superior civilization. If advanced beings have the technology to simulate conscious minds, those simulations would vastly outnumber the original “base reality,” making it statistically probable that we are living in one. Makes life more interesting if you think about it that way now doesn’t it? Yeah, that’s what I thought. I’d like to hope that life isn’t that way at all, but whose to say how it’s meant to be? Whoever the grand architect is of it all is the ...
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