70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
Additional Modules
The modules directory contains the following example files:
bin-example.bin- a TTF file for the Inter font with the extension changed to.binhtml-example.html- a Hello World HTML documenttext-example.txt- a simple text filewasm-example.wasm- a compiled WebAssembly file that exports anaddfunction
The WebAssembly is generated from the following C code:
#include <stdint.h>
int32_t add(int32_t a, int32_t b) {
return a + b;
}