Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/8df72fe0afc6099e3c6cd4bff34b92f1 to your computer and use it in GitHub Desktop.
Save trycf/8df72fe0afc6099e3c6cd4bff34b92f1 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
function add1(arg) {
var result = arg
writeDUmp(result)
result += 1
return result
}
two = add1(1)
WriteOutput(two)
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment