5 lines
94 B
Text
5 lines
94 B
Text
<cfscript>
|
|
who = "World!";
|
|
greeting = "Hello " & who;
|
|
writeOutput( greeting );
|
|
</cfscript>
|