diff options
author | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2021-08-10 07:48:47 +0100 |
---|---|---|
committer | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2021-08-10 07:48:47 +0100 |
commit | dd527f05895d4984170f2174ca09166ef9d883fc (patch) | |
tree | 4a10d61db6c588be650cc99bd7ae3ae009992fa4 /NaiveFFT | |
download | NaiveFFT-dd527f05895d4984170f2174ca09166ef9d883fc.tar.gz NaiveFFT-dd527f05895d4984170f2174ca09166ef9d883fc.zip |
Initial Commit
Diffstat (limited to 'NaiveFFT')
-rw-r--r-- | NaiveFFT/main.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/NaiveFFT/main.c b/NaiveFFT/main.c new file mode 100644 index 0000000..c43c48b --- /dev/null +++ b/NaiveFFT/main.c @@ -0,0 +1,14 @@ +// +// main.c +// NaiveFFT +// +// Created by Jacky Jack on 10/08/2021. +// + +#include <stdio.h> + +int main(int argc, const char * argv[]) { + // insert code here... + printf("Hello, World!\n"); + return 0; +} |