protoverse

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

hello.wasm.c (138B)


      1 
      2 #include <stdio.h>
      3 #include <string.h>
      4 #include <errno.h>
      5 
      6 int main(int argc, const char *argv[])
      7 {
      8 	printf("1%d\n", 0);
      9 
     10 	return 0;
     11 }
     12 
     13