mirror-nourybot/internal/commands/coinflip.go

22 lines
278 B
Go
Raw Normal View History

2023-09-07 20:43:16 +02:00
package commands
import (
"github.com/lyx0/nourybot/internal/common"
)
func Coinflip() string {
flip := common.GenerateRandomNumber(2)
var reply string
switch flip {
case 0:
reply = "Heads!"
case 1:
reply = "Tails!"
default:
reply = "Heads!"
}
return reply
}