chess icon indicating copy to clipboard operation
chess copied to clipboard

Feature request: pass a vector to move()

Open cshancock opened this issue 3 years ago • 0 comments

I would like to be able to pass a character vector to move(). This works:

game() %>%
    move("e4", "c5", "Nf3", "e6", "d3", "Nc6", "g3", "Nf6")

But this does not:

test_moves <- c("e4", "c5", "Nf3", "e6", "d3", "Nc6", "g3", "Nf6")

game() %>%
    move(test_moves)

cshancock avatar Jun 06 '21 20:06 cshancock