boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00131.c (269B)


      1 #include <stdio.h>
      2 
      3 int main() 
      4 {
      5    printf("Hello\n");
      6    printf("Hello\n"); /* this is a comment */ printf("Hello\n");
      7    printf("Hello\n");
      8    // this is also a comment sayhello();
      9    printf("Hello\n");
     10 
     11    return 0;
     12 }
     13 
     14 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :