Skip to content
Snippets Groups Projects
Commit 228fc247 authored by Eraser's avatar Eraser
Browse files

Added external files

parent 560e5e5d
No related branches found
No related tags found
Loading
#include <iostream> #include <iostream>
#include "aufgabe1.h" #include "aufgabe1.h"
#include "Cards.h"
int main() { int main() {
std::cout << "Info 3 Projekt Nr.1" << std::endl; std::cout << "Info 3 Projekt Nr.1" << std::endl;
...@@ -9,5 +10,12 @@ int main() { ...@@ -9,5 +10,12 @@ int main() {
levenshteinDistance("hello", "hallo"); levenshteinDistance("hello", "hallo");
levenshteinDistance("s", ""); levenshteinDistance("s", "");
levenshteinDistance("", "s"); levenshteinDistance("", "s");
Cards s;
s.cmc = 210;
s.count = "sf";
s.name = "peter";
s.type = "uwu";
std::cout << s.name << s.count << s.type << s.cmc << std::endl;
return 0; return 0;
} }
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment