From af51b618dbca894a82092a4ab38c007917d193f3 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Tue, 6 Oct 2020 13:14:24 +0200 Subject: [PATCH] Assignment 1: Rewording --- assignment1/README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/assignment1/README.md b/assignment1/README.md index 3ac5acb..a2c7244 100644 --- a/assignment1/README.md +++ b/assignment1/README.md @@ -1,8 +1,9 @@ -# Assignment 1 (draft) +# Assignment 1 *due on 18 November 2020* -In this first assignment you are tasked to create a very basic version control system (VCS) similar to [Git](https://git-scm.com/) or [Mercurial](https://www.mercurial-scm.org/). +In this first assignment your task is to create a version control system (VCS) similar to [Git](https://git-scm.com/) or [Mercurial](https://www.mercurial-scm.org/). +However, this VCS will be much simpler. For this assignment you are *not* allowed to work in teams. You are *not* allowed to use code from other people participating in this course. @@ -71,13 +72,13 @@ Add coin operated self-destruct feature #include #include -+#include ++#include "ship_systems/propulsion/shaw_fujikawa.h" + -+#include ++#include "utils/coin_operator.h" + - int main(void) - { - puts("Hello World"); + int main(void) + { + puts("Hello World"); + + if (coin_operator_triggered()) { + puts("Have a nice day (> . =)"); @@ -85,8 +86,8 @@ Add coin operated self-destruct feature + prop_detonate(engine); + } + - return EXIT_SUCCESS; - } + return EXIT_SUCCESS; + } ``` ### `lit checkout`