protoverse

A metaverse protocol
git clone git://jb55.com/protoverse
Log | Files | Refs | README | LICENSE

hello-c.c (185B)


      1 #include <stdio.h>
      2 
      3 int add(int a, int b, int c, int d)
      4 {
      5 	return a + b + c + d;
      6 }
      7 
      8 int main(int argc, const char *argv[])
      9 {
     10 	printf("Hello, world? %d\n", add(1,2,3,4));
     11 	return 0;
     12 }
     13 
     14