R/dieroll.R

Defines functions dieroll

Documented in dieroll

#Roll of a 6 sided die

dieroll<-function()
{
  return(sample(c(1,2,3,4,5,6),1))
}
aicon08/TestProject documentation built on May 23, 2019, 2:45 p.m.