summaryrefslogtreecommitdiff
path: root/c_wasm
diff options
context:
space:
mode:
authorPhyscik <mynameisgennadiy@vk.com>2025-12-16 17:25:58 +0500
committerPhyscik <mynameisgennadiy@vk.com>2025-12-16 17:25:58 +0500
commit95ef1315c6fea2de25ee4bef9f858d3cd471e46f (patch)
treebf19b432210bca7b02d4e04fae2dc0f73d1a962a /c_wasm
parent942d5d8b84f55d71a275a7d6f3446587ab7368a3 (diff)
Wasm -> goHEADmaster
Diffstat (limited to 'c_wasm')
-rw-r--r--c_wasm/hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c_wasm/hello.c b/c_wasm/hello.c
new file mode 100644
index 0000000..696b1fb
--- /dev/null
+++ b/c_wasm/hello.c
@@ -0,0 +1,6 @@
+extern void xdx();
+
+int Add(int a, int b) {
+ xdx();
+ return a + b;
+}