notnil / joker

Poker library written in go (golang)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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())
}

About

Poker library written in go (golang)


Languages

Language:Go 72.3%Language:JavaScript 26.7%Language:HTML 0.8%Language:Makefile 0.1%