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/aef0b0d98bd2f8c285de388730de6865 to your computer and use it in GitHub Desktop.
Save trycf/aef0b0d98bd2f8c285de388730de6865 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
assignMe = some?.key?.that?.is?.not?.there?:{"real":"I'm a real value!"}
writeDump(assignMe);
assignMeFunky = some?.key?.that?.is?.not?.there?:(a)=>"woah #a#!";
writeDump(assignMeFunky("Nelly"));
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment