Created
January 21, 2021 22:56
-
-
Save trycf/afa59177ad3d9c5d7a85928d4c1dcf78 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- Tag Based ---> | |
<cfset person = structNew()> | |
<cfset structInsert(person,"first_name","Bart")> | |
<cfdump var="#person#" label="person - tag based"> | |
<cfscript> | |
// Script Based | |
person = structNew(); | |
structInsert( 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