This commit is contained in:
2024-09-04 16:14:04 +02:00
commit 0e6c7a6c24
24 changed files with 1104 additions and 0 deletions

17
src/life.cpp Executable file
View File

@ -0,0 +1,17 @@
// This is the CPP file you will edit and turn in.
// Also remove these comments here and add your own.
// TODO: remove this comment header
#include <iostream>
#include "grid.h"
#include "lifeutil.h"
#include <string>
int main() {
// TODO: Finish the program!
std::cout << "Have a nice Life! " << std::endl;
return 0;
}

3
src/readme.txt Executable file
View File

@ -0,0 +1,3 @@
This directory contains the source code files (*.cpp, *.h)
that you will write as you complete the assignment.
We will also put any instructor-provided code here.