protoverse

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

commit 0cde66af19af8a00f4763d0b697364238397e34e
parent 3fef8e5dde12e7742b2135277f034d43ce79d539
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 30 Nov 2020 09:18:15 -0800

wasm: hello-c emcc test

Diffstat:
Awasm/hello-c.c | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/wasm/hello-c.c b/wasm/hello-c.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(int argc, const char *argv[]) +{ + printf("Hello, world?\n"); + return 0; +}