mumble

A Lisp written in C, following the *Build Your Own Lisp* book
Log | Files | Refs | README

scratchpad.c (139B)


      1 #include <stdio.h>
      2 #include <stdlib.h>
      3 #include <string.h>
      4 
      5 int main(){
      6 	printf("Hello");
      7 	for(int i=0; i<0;i++){
      8 		printf(" world");
      9 	}
     10 }