How to build a rock, paper, scissors game with GitHub Copilot

Read More

In this tutorial, we will build a rock, paper, scissors game with GitHub Copilot. We will also explore GitHub Copilot, a cloud-based AI tool that assists users of various editors in suggesting lines of code and whole functions instantly. We will discuss how Copilot has redefined productivity for millions of developers, and the benefits it provides. This tutorial includes the use of CodeTour, a VS Code extension, that allows developers to create and follow a guided walkthrough of a codebase. Let’s get started!

What is GitHub Copilot?

GitHub Copilot has helped redefine productivity for millions of developers by introducing them to the magic of AI assistance. GitHub Copilot is a cloud-based artificial intelligence tool developed by GitHub and OpenAI to assist users of Visual Studio, Visual Studio Code, Neovim, and JetBrains by suggesting lines of code and whole functions instantly. With Copilot, you can write a regular expression or interact with an API for the first time without leaving your editor.

Why I love GitHub Copilot

GitHub Copilot boosts productivity because it helps developers spend more time thinking about the theory they are building than about the code itself.

However, beyond productivity, GitHub Copilot helps provide me with psychological safety. Psychological safety refers to the belief that you can speak up, ask questions, make mistakes, and contribute without fear of punishment or humiliation. When employees feel safe to learn, ask questions, contribute, and lead, it boosts the teams and individuals overall confidence, morale, and performance.

Unfortunately, the reality is psychological safety is not always common at work. When I’m feeling uncertain about asking for help, or I’m not even sure how to word my questions, I can use GitHub Copilot to help me:

  • Brainstorm ideas when I reach a mental block
  • Jog my memory
  • Retain focus
  • Determine if I’m going in the right direction

Why would I build a rock, paper, scissors game?

  • I did this for fun
  • I did this to build my Python skills. Im a baby Pythonista. For the past 5 years, I’ve been writing different forms of JavaScript on the frontend and backend, but ever since I started using GitHub Copilot, I’ve taken up an interest in Python. And I want to continue to read, type, and navigate code written in Python. It’s a less verbose language than JavaScript, so it feels easy for me to learn.
  • I wanted to create a short, fun activity to help folks learn how to leverage GitHub Copilot because it’s not always obvious how to get started. Hint: Provide as much context as possible through comments and lines of code.
  • I remember building a rock, paper, scissors game when I was in a coding bootcamp back in 2018. At the time, the logic seemed so difficult. Im hoping this can be a helpful tool for developers who are learning to code.
  • I want to continue to creatively use GitHub Copilot for different situations to understand its limitations and strengths.

To complete this tutorial, you will need:

How does this work?

The CodeTour prompts developers to write comments and lines of code that trigger GitHub Copilot to generate code to create a rock, paper, scissors game.

What is CodeTour?

CodeTour is a VS Code extension developed by my amazing coworker, Jonathan Carter! It allows developers to create and follow a guided walkthrough of a codebase.

What you will find in this repository

In this repository, you will find:

  • a main.py file with no contents
  • a devcontainer that installs CodeTour and GitHub Copilot when the Codespace is created
  • a CodeTour to guide the developer through using GitHub Copilot to develop a rock, paper, scissors game.

How to use the guided CodeTour

Navigate to this repository that I created. Then follow the instructions below:

Step 1

Choose ‘Use this template’, and ‘Open in a codespace’

Open in a codespace image

Step 2

Choose the Explorer Icon on the left sidebar of your editor.

Highlighting the Explorer Icon

Step 3

Toggle the CodeTour panel

Highlighting the Code Tour panel

Step 4

Press the Play button to start the tour.

Highlighting the Play button

Step 5

Your CodeTour will begin! Follow the CodeTours steps to learn how to use GitHub Copilot.

Highlighting the start of a CodeTour

Your CodeTour will take you through the following steps

Step 1

Introduction: Hi there! this is a guided tour to help you learn GitHub Copilot. We will build a rock, paper, scissors game with Python.

Step 2

Let’s give GitHub Copilot some context about what we’re building. Write this comment # Write a rock, paper, scissors, game at the top of your main.py file.

Write a rock paper scissors game comment

Now, let’s prompt Copilot to import the random module. Write this comment # import random module on the next line. Press enter to create a new line and accept Copilot’s suggestion.

Screen Shot 2023-03-03 at 6 58 46 AM

Step 3

Now, let’s prompt Copilot to create a main function that handles the logic of the game with a comment that says # define main function that handles all the logic. Press enter to create a new line and accept Copilot’s suggestion.

define main function

Step 4

Now, let’s prompt Copilot to call the main function. Write this comment # call main function on the next line. Press enter to create a new line and accept Copilot’s suggestion.

Call main function

Step 5

Try it out! Let’s run the code to see if it works. In your terminal, run python3 main.py. It should start the rock, paper, scissors game. Mission complete! You’ve used GitHub Copilot to create a rock, paper, scissors game in Python!

Playing the game in the terminal

Do you have feedback?

Feel free to create an issue in the repo or comment below!! Theres definitely room for improvement, as this is my first time using CodeTour to guide people through GitHub Copilot.

Follow GitHub and me for similar content about GitHub!