Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 559 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 559 Bytes

hexr

The goal of hexr is to playing hex boardgame with R!

Installation

You can install the development version of hexr like so:

devtools::install_github("statditto/hexr")

Example

This is a basic example which shows you how to solve a common problem:

library(hexr)
## basic example code
board <- initialize_hex_board()
plot_hex_board(board)

TBD