Skip to content

Dewdrop

development @jtenner

The compiler and standard library for Dew, a statically typed programming language that compiles directly to WebAssembly GC.

Dewdrop

What is Dew?

Dew is a statically typed programming language. Dewdrop is its reference compiler and standard library.

Dew compiles directly to WebAssembly GC (WasmGC). WasmGC gives a WebAssembly program managed structs, arrays, strings, closures, and other reference types without requiring the language to build all of them in linear memory.

Why does it exist?

Dewdrop explores what a language can look like when WasmGC is a primary compilation target.

The compiler has a few important goals:

What is unusual about it?

Dew already includes substantial language and standard-library work:

Dewdrop uses Starshine to validate and encode WebAssembly modules. It also uses Starshine as part of its optimizer and backend work.

The language is under active development. There is not yet a stable Dew release.