Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/1c371effc63f47532bbd1dac5efb8d46 to your computer and use it in GitHub Desktop.
Save trycf/1c371effc63f47532bbd1dac5efb8d46 to your computer and use it in GitHub Desktop.
TryCF Gist
<!--- TAG BASED --->
<cfset person.first_name= "Bart">
<cfdump var="#person#" label="person - tag based">
<cfscript>
// Script based
person.first_name = "Bart";
writeDump( var=person, label="person - script based" );
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment