From cbcfcea153f88b3fc90375451fc2fa275493cde7 Mon Sep 17 00:00:00 2001 From: jetstream0 Date: Wed, 11 Dec 2019 16:21:53 +0000 Subject: [PATCH] Add run on repl.it badge to README This pull request configures this repository to be run on Repl.it. It adds a `.replit` configuration file and a Repl.it badge to the `README`. You can read more about running repos on Repl.it [here](https://docs.repl.it/repls/dot-replit), or view the Repl [here](https://repl.it/@rediar/checkers-1). --- .replit | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 0000000..cc39e90 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python" +run = "python game.py" diff --git a/README.md b/README.md index 6fe7ffe..557531b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![Run on Repl.it](https://repl.it/badge/github/almostimplemented/checkers)](https://repl.it/github/almostimplemented/checkers) Checkers AI: a look at Arthur Samuel's ideas =====================================