Skip to content

Instantly share code, notes, and snippets.

@itsdebartha
Last active August 22, 2022 07:07
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 itsdebartha/bd3286a728726daded939da441f98230 to your computer and use it in GitHub Desktop.
Save itsdebartha/bd3286a728726daded939da441f98230 to your computer and use it in GitHub Desktop.
rolls<-function(n) #function
{
x<-sample(1:6,n,replace=T) #roll n times
return(max(x)) #return the max face value obtained
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment