first commit

This commit is contained in:
2023-02-09 01:56:17 +06:00
commit cdcd18ea66
13 changed files with 182 additions and 0 deletions

10
src/main.c Normal file
View File

@@ -0,0 +1,10 @@
#include "../kerep/src/Filesystem/filesystem.h"
int main(const int argc, const char* const* argv){
kprintf("\e[37margs:");
for(int i=0; i<argc; i++)
kprintf(" %s", argv[i]);
kprintf("\n");
return 0;
}