From 13860b2e2fe0bb050df26d6400aa8d89b1b3a39b Mon Sep 17 00:00:00 2001 From: DSALukeD Date: Fri, 10 Jul 2020 13:50:21 +0000 Subject: [PATCH] Add run on repl.it badge to README This pull request adds a `Run on Repl.it` badge to the `README`. This will allow users to easily run this repository in their browser, without having to set up an environment. You can learn more about Repl.it [here](https://repl.it). --- .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..1b15c05 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "" \ No newline at end of file diff --git a/README.md b/README.md index 8c5c73a..177cedd 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![Run on Repl.it](https://repl.it/badge/github/techwithtim/Hangman)](https://repl.it/github/techwithtim/Hangman) # Hangman-Python A simple hangman game made with python and pygame. This was made as a beginner pygame project in grade 11 (2017).