Wasn't I doing something with the UMN Kauffman course

This commit is contained in:
Dan Buch 2024-03-01 19:46:36 -05:00
parent 9109e3a3dc
commit ad65630b3f
Signed by: meatballhat
GPG Key ID: A12F782281063434

View File

@ -0,0 +1,8 @@
#include <unistd.h>
int
main(int argc, char *argv[])
{
char * buf = "hello\n";
write(1, buf, 6);
}