Created
April 18, 2018 19:04
-
-
Save trycf/6c9b335557c7ca20f4ab26da4d130c54 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
<cfscript> | |
a = function () { | |
writeoutput("a was called!<hr />"); | |
return "a"; | |
} | |
writeoutput("before runAsync<hr />"); | |
future = runAsync(a); | |
writeoutput("before get<hr />"); | |
result = future.get(); | |
writeoutput("after get<hr />"); | |
writedump(result); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment