Skip to content

Instantly share code, notes, and snippets.

@Hugoberry
Last active October 14, 2017 13:40
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 Hugoberry/2a81a2df31cbddbaf039f65c1fde5246 to your computer and use it in GitHub Desktop.
Save Hugoberry/2a81a2df31cbddbaf039f65c1fde5246 to your computer and use it in GitHub Desktop.
Example of a closure function in Power Query
let
ring = () => () =>[Answer="Hello"],
firstCall = ring(), //returns a function
secondCall = ring()() //returns Answer="Hello"
in
secondCall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment