Skip to content

Instantly share code, notes, and snippets.

@J-Moravec
Created March 24, 2024 20:14
Show Gist options
  • Save J-Moravec/ca5d11f2be1993dbc61e1ffd625adaf3 to your computer and use it in GitHub Desktop.
Save J-Moravec/ca5d11f2be1993dbc61e1ffd625adaf3 to your computer and use it in GitHub Desktop.
count_to
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