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