Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <cffunction access="public" name="myFunction">
  2. <cfargument required="true" type="any" name="myArgument">
  3. <cfif myArgument EQ 3>
  4. <cfcontinue>
  5. </cfif>
  6. </cffunction>
  7.  
  8. <cfloop index="i" from="1" to="10">
  9. <cfset myFunction(i)>
  10. <cfset writeDump(i)>
  11. </cfloop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement