File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every
8
8
Make sure to see [ contributing.md] ( /contributing.md ) for instructions on contributing to the project!
9
9
10
10
<!-- Languages start-->
11
- ## Languages (778 total)
11
+ ## Languages (780 total)
12
12
13
13
* [ !@#$%^&* ()_ +] ( %23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B )
14
14
* [ 05AB1E] ( %23/05AB1E )
@@ -278,6 +278,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
278
278
* [ Divzeros] ( d/Divzeros.dz )
279
279
* [ DNA#] ( d/DNA%23.dna )
280
280
* [ DNA-Sharp] ( d/DNA-Sharp.dna )
281
+ * [ DOG] ( d/DOG )
281
282
* [ Dog] ( d/Dog )
282
283
* [ DogeScript] ( d/DogeScript.djs )
283
284
* [ DOGO] ( d/DOGO.dogo )
@@ -750,6 +751,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
750
751
* [ Vowels] ( v/Vowels.vw )
751
752
* [ VRML] ( v/VRML.wrl )
752
753
* [ Vue] ( v/Vue.js )
754
+ * [ WebAssembly] ( w/WebAssembly.wat )
753
755
* [ Wenyan] ( w/Wenyan.wy )
754
756
* [ Wheat] ( w/Wheat.wheat )
755
757
* [ Whenever] ( w/Whenever.whenever )
Original file line number Diff line number Diff line change
1
+ (module
2
+ (import " wasi_unstable" " fd_write"
3
+ (func $fd_write (param i32 i32 i32 i32 ) (result i32 ))
4
+ )
5
+
6
+ (memory 1 )
7
+ (export " memory" (memory 0 ))
8
+
9
+ (data (i32.const 0 ) " \08\00\00\00\0c\00\00\00 Hello World\n " )
10
+
11
+ (func $main (export " _start" )
12
+ i32.const 1
13
+ i32.const 0
14
+ i32.const 1
15
+ i32.const 20
16
+ call $fd_write
17
+ drop
18
+ )
19
+ )
You can’t perform that action at this time.
0 commit comments