Learn R Programming

bigchess (version 1.9.1)

uci_quit: Sending quit command to chess engine

Description

Sending quit command to chess engine and cleaning temps from R

Usage

uci_quit(engine)

Arguments

engine

engine object

Value

strings from uci chess engine GUI

Examples

Run this code
# NOT RUN {
# Linux (make sure you have executable permission):
engine_path <- "./stockfish_10_x64"
# Windows
# engine_path <- "./stockfish_10_x64.exe"
e <- uci_engine(engine_path)
uci_quit(e)
# Using pipe '%>%' from magrittr:
require(magrittr)
uci_engine(engine_path) %>% uci_quit()
# }

Run the code above in your browser using DataLab