From 1a25bb970a1ad7d5511b4d5e295d9064dddcfa29 Mon Sep 17 00:00:00 2001 From: HaleySnooks <632497@pdsb.net> Date: Fri, 28 Feb 2020 15:18:19 +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 | 3 +++ README.md | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 0000000..ded5b8e --- /dev/null +++ b/.replit @@ -0,0 +1,3 @@ +language = "pygame" + run = "run = Hello World" + \ No newline at end of file diff --git a/README.md b/README.md index 2dbd06e..3e9076b 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,5 @@ Single player pong game in python using pygame library. Use left and right arrow keys to move the paddle. Be gentle! Dont press both keys simultaneously or the paddle gets stuck for a second. + +[![Run on Repl.it](https://repl.it/badge/github/skar91/pong-python)](https://repl.it/github/skar91/pong-python) \ No newline at end of file