Skip to content

Instantly share code, notes, and snippets.

Created September 2, 2017 22:42
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 anonymous/cf0c7a19760b29beff24d33fc4507096 to your computer and use it in GitHub Desktop.
Save anonymous/cf0c7a19760b29beff24d33fc4507096 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
q = query(a:[1,2,3], b:[4,5,6]);
dump(q);
arr = [];
for (row in q)
arr.append(row);
dump(arr);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment