bruh. you took too long to get colours

... that you don't even need
This commit is contained in:
2026-01-14 20:46:28 +05:30
parent 48270d41b8
commit 2c7a420323
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include "helper.h"
#define NAME "args"
int main(int argc, char **argv){
if (argc < 2) {
PRINT_ERROR("%s obviously needs arguments to work…", NAME);
return 1;
}
return 0;
}