Assignment 1: Rewording

This commit is contained in:
Alex Hirsch 2020-10-06 13:14:24 +02:00
parent 2244005488
commit af51b618db

View File

@ -1,8 +1,9 @@
# Assignment 1 (draft) # Assignment 1
*due on 18 November 2020* *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. 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. You are *not* allowed to use code from other people participating in this course.
@ -71,9 +72,9 @@ Add coin operated self-destruct feature
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
+#include <ship_systems/propulsion/shaw_fujikawa.h> +#include "ship_systems/propulsion/shaw_fujikawa.h"
+ +
+#include <utils/coin_operator.h> +#include "utils/coin_operator.h"
+ +
int main(void) int main(void)
{ {