Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 457 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 457 Bytes

joker

Poker hand evaluation and ranking written in go (golang)

To install run:

go get github.com/notnil/joker/hand
package main

import (
	"fmt"

	"github.com/notnil/joker/hand"
)

func main() {
	deck := hand.NewDealer().Deck()
	h1 := hand.New(deck.PopMulti(5))
	h2 := hand.New(deck.PopMulti(5))

	fmt.Println(h1)
	fmt.Println(h2)

	hands := hand.Sort(hand.SortingHigh, h1, h2)
	fmt.Println("Winner is:", hands[0].Cards())
}