Created
October 17, 2022 12:44
-
-
Save Menziess/511a4528a26cf53fb1532df05cf09550 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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