inital commit

This commit is contained in:
2025-12-22 19:42:07 +00:00
commit 84f3049da0
3 changed files with 10 additions and 0 deletions

8
kilo.c Normal file
View File

@@ -0,0 +1,8 @@
#include <unistd.h>
int main() {
char c;
while (read(STDIN_FILENO, &c, 1) == 1)
;
return 0;
}