Created
March 24, 2024 20:14
-
-
Save J-Moravec/ca5d11f2be1993dbc61e1ffd625adaf3 to your computer and use it in GitHub Desktop.
count_to
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
count_to = function(x = 5){ | |
current = 0 | |
function(){ | |
if(i >= x) | |
return(NULL) | |
i <<- i+1 | |
i | |
} | |
} | |
count = count_to(3) | |
count() # 1 | |
count() # 2 | |
count() # 3 | |
count() # NULL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment