Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2013
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset b = function1() />
  2.  
  3. <cfoutput>#b#</cfoutput>
  4.  
  5. <cffunction name="function1">
  6.     <cfset var data = "Hello world" />
  7.  
  8.     <cfset function2() />
  9.  
  10.     <cfreturn data />
  11. </cffunction>
  12.  
  13. <cffunction name="function2">
  14.     <cfset var data = "GONE" />
  15.  
  16.     <cfreturn />
  17. </cffunction>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement