boot2

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

00015.c (85B)


      1 int
      2 main()
      3 {
      4 	int arr[2];
      5 
      6 	arr[0] = 1;
      7 	arr[1] = 2;
      8 
      9 	return arr[0] + arr[1] - 3;
     10 }