This repository contains a series of exercises intended to introduce early learners to simple software engineering. The exercises will build into a functional enigma machine.
- Command line access
- Python and git installed
- pytest module available
- No internet required (except to download the repository)
- Previous programming experience
- Some basic python
The main branch contains the initial state that learners should
begin with. With each exercise, the student is asked to implement some
code based on a simple specification. The instructions will be in an
exerciseXX directory. The student should save and commit their code in
the src directory. There will be some verification involved
during each lesson.
When progressing to the next lesson, the learner should merge from the
relevant exerciseXX branch, and follow the exercise
instructions. These merges will not modify the src directory.
-
Open a terminal. On windows this will be "Command Prompt" or "Powershell". On Linux and macOS this will be a program called "Terminal".
-
Clone this repository with git by typing the following:
git clone https://github.com/kilroyd/enigma- Change to the new directory created by git
cd enigma-
Open
intro/index.htmlin a browser for an introductory presentation about what we will be doing. -
Open
intro/README.mdfor a guide to get familiar with the tools we will be using. -
For each exercise there will be a similar presentation and guide in
index.htmlandREADME.mdin theexerciseXXdirectory.