From 4da134457959c337324c70b93b8d80ac80204e33 Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Sun, 17 Oct 2021 19:58:36 +0200 Subject: [PATCH] Update README.md --- exercises/16/create_class/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/exercises/16/create_class/README.md b/exercises/16/create_class/README.md index 1f91053..973e84b 100644 --- a/exercises/16/create_class/README.md +++ b/exercises/16/create_class/README.md @@ -1,9 +1,8 @@ [< Back](../README.md) -# Exercise: Simple class +# Exercise: Create a class -## Exercise: +## Exercise: Simple class -1. Create an empty class named `Clyde` within the `.hpp` file. Look at other ghost `.hpp` files and see how they define - the class. It does not need to inherit from the `Ghost` base class and it does not need any functions. But if you - have extra time, try to inherit from the Ghost class and see what happens when you try to compile. +1. Create an empty class named `Clyde` within the `.hpp` file. +2. Look at other ghost `.hpp` files and see how they define the class. It does not need to inherit from the `Ghost` base class and it does not need any functions.