Xv6 with picoc & Linkage editor  v1.0
The project delineate mutual cohesion between c library, linkage editor ( linker), interpreter and operating system by porting the same on xv6 kernel
 All Data Structures
01_comment.c
00001 #include <stdio.h>
00002 
00003 printf("Hello\n");
00004 printf("Hello\n"); /* this is a comment */ printf("Hello\n");
00005 printf("Hello\n");
00006 // this is also a comment sayhello();
00007 printf("Hello\n");
00008 
00009 
00010 void main() {}
 All Data Structures