From 9d74d9120c5d579c9e6bd302f4e4d432f7a3e93c Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sun, 1 Oct 2023 11:36:30 +0200 Subject: [PATCH] clean --- .gitignore | 4 +++- hello.c | 7 ------- 2 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 hello.c diff --git a/.gitignore b/.gitignore index fd0bd5e..38b5ae6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ /target /example-user/target /tests/target -/.vscode \ No newline at end of file +/.vscode +a.out +/*.c \ No newline at end of file diff --git a/hello.c b/hello.c deleted file mode 100644 index d61a13f..0000000 --- a/hello.c +++ /dev/null @@ -1,7 +0,0 @@ -#include -int main(int argc, char *argv[]) { - int result = printf("Hello, world!\n"); - if (result != 15) { - return 1; - } -}