- initial commit

This commit is contained in:
2022-06-28 19:13:17 +02:00
commit 18a452544d
4 changed files with 312 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <cstdio>
#include <cmath>
#include <blaze/Math.h>
void static_vector();
void dynamic_vector();
void slicing_vector();
void shift();
int main()
{
printf("Hallo, Welt!\n");
static_vector();
dynamic_vector();
slicing_vector();
shift();
return 0;
}