Skip to content

Instantly share code, notes, and snippets.

@Menziess
Created October 17, 2022 12:44
Show Gist options
  • Save Menziess/511a4528a26cf53fb1532df05cf09550 to your computer and use it in GitHub Desktop.
Save Menziess/511a4528a26cf53fb1532df05cf09550 to your computer and use it in GitHub Desktop.
def timer(start):
_start = start
def _(end):
nonlocal _start
it_took = end - _start
_start = end
return it_took
return _
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment