main.c 106 B

123456789
  1. #include "print.h"
  2. int main(void)
  3. {
  4. put_str("I am kernel\n");
  5. while (1)
  6. ;
  7. return 0;
  8. }