• Stars
    star
    128
  • Rank 281,044 (Top 6 %)
  • Language WebAssembly
  • License
    The Unlicense
  • Created over 1 year ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Samples of WebAssembly Text programs

WebAssembly WAT samples

Some sample WebAssembly Text programs.

WebAssembly defines a portable binary-code format and a corresponding text format for executable programs as well as software interfaces for facilitating interactions between such programs and their host environment.

The text format (WAT) is, essentially, an assembly language. While most people will not write WAT directly (just as most programmers don't write assembly code directly), familiarity this format is important if you seek a deep understanding of WASM mechanisms and related toolchains.

How to run these samples

Unless otherwise stated, each sample consists of a single .wat file and an accompanying test.js file. When the setup is more complicated, the directory's own README will have additional information.

First, start by compiling the WAT file to WASM with wabt or some other WASM toolchain:

$ wat2wasm somefile.wat

This creates a somefile.wasm binary, which test.js expects to find in its own directory. To load and test the WASM, you'll need a recent Node.js installed, and run:

$ node test.js

This will typically emit some output; if the loading failed or the loaded WASM behaves unexpectedly, the test.js script will report an error.

WASI documentation

Useful sources of documentation about WASI host calls:

More Repositories

1

pycparser

🐍 Complete C99 parser in pure Python
Python
3,226
star
2

pyelftools

Parsing ELF and DWARF in Python
Python
2,013
star
3

code-for-blog

Code samples from my blog
Go
1,574
star
4

llvm-clang-samples

UNMAINTAINED: Examples of using the LLVM and Clang compilation libraries and tools
C++
1,187
star
5

raft

🚣 Raft implementation in Go
Go
1,045
star
6

pss

pss is a power-tool for searching inside source code files.
Python
327
star
7

pykaleidoscope

Implementation of the LLVM tutorial in Python
Python
292
star
8

static-server

A simple, zero-configuration HTTP server CLI for serving static files
Go
183
star
9

modlib

Go project layout with exported packages and command-line tools, using modules
Go
180
star
10

deep-learning-samples

Sample code for deep learning & neural networks
Python
170
star
11

bobscheme

An implementation of Scheme in Python and C++
C++
167
star
12

luz-cpu

Educational open-source CPU suite (with assembler, linker and simulator)
Python
161
star
13

js-8080-sim

Intel 8080 assembler and simulator in JS, optimized for simplicity.
JavaScript
155
star
14

gemini-cli

Access Gemini LLMs from the command-line
Go
100
star
15

libjit-samples

Code samples for using libjit
C
91
star
16

go-sudoku

Toolkit for solving and generating Sudoku puzzles in Go
Go
88
star
17

wcx64

Clone of wc in x64 assembly
Assembly
87
star
18

c-unleashed-book-souce-code

Source code for the "C Unleashed" book by Richard Heathfield, Lawrence Kirby, et al.
C
70
star
19

gosax

gosax is a basic wrapper for stream parsing of XML (SAX) Go
Go
62
star
20

asdl_parser

Standalone ASDL parser for upstream CPython 3.x
Python
61
star
21

go-ungrammar

Ungrammar implementation and API in Go
Go
43
star
22

paip-in-clojure

πŸŒ… Code from "Paradigms of Artificial Intelligence Programming" in Clojure
Clojure
39
star
23

cs344

Introduction to Parallel Programming class code
C++
31
star
24

go-sentencepiece

Go implementation of the SentencePiece tokenizer
Go
20
star
25

go-websocket-sample

Sample Go websocket server and JS client with tracing and JSON data interchange
Go
20
star
26

esms

Legacy - ESMS (Electronic Soccer Management Simulator)
C++
18
star
27

xmlgen

C
15
star
28

go-quines

Some quines in the Go programming language
Go
15
star
29

python3-samples

Samples of Python 3 code, libraries, etc.
Python
12
star
30

gogl

Go Generic Library
Go
11
star
31

tupperformula

JS demo of Tupper's formula
JavaScript
9
star
32

arm_asm_hacks

ARM assembly hacks
Assembly
8
star
33

lsystem

JavaScript
8
star
34

hackutils

Various hacky utils for Go
Go
8
star
35

gocloud-samples

Samples/hacks with gocloud
Go
7
star
36

jscool2asm

JavaScript
5
star
37

sample-go-cli

Sample Go CLI project structure
Go
4
star
38

colorful-lines

My JS clone of the Colorful Lines game
JavaScript
4
star
39

cl-in-clj

Common Lisp --> Clojure snippets/idioms translation
Clojure
3
star
40

gocdkx

Fork of google/go-cloud for experiments.
Go
3
star
41

so-tag-sentiment-analysis

Go
2
star
42

ollama-import-experiment

Go
2
star
43

line-plotting

JavaScript
2
star
44

go-travis-test

sandbox
Shell
2
star
45

cljmin

Minimal project template for Clojure
Clojure
2
star
46

diffuse-sim

JavaScript
1
star
47

sample-go-project-vscode

Go
1
star
48

onlisp-in-clojure

Clojure
1
star
49

4clojure-solutions

My solutions to https://www.4clojure.com/problems
Clojure
1
star