diff --git a/README.md b/README.md index d83be53..698ed30 100644 --- a/README.md +++ b/README.md @@ -107,5 +107,6 @@ TrumpScript Typescript V VHDL +Webassembly Wenyan Zig diff --git a/implementations/main.wat b/implementations/main.wat new file mode 100644 index 0000000..4396bde --- /dev/null +++ b/implementations/main.wat @@ -0,0 +1,6 @@ +(module + (func (result i32) + (i32.const 0) + ) + (export "isPrime" (func 0)) +) \ No newline at end of file diff --git a/optimized_implementations/main.wat b/optimized_implementations/main.wat new file mode 100644 index 0000000..bfe665f --- /dev/null +++ b/optimized_implementations/main.wat @@ -0,0 +1 @@ +(module(func(result i32)(i32.const 0))(export "isPrime" (func 0))) \ No newline at end of file