v.0.5
Tutorial

There is a (very) introductory tutorial to Seed, covering the creation of a small GTK+ WebKit browser, here

Mapping

There is a document covering at a broad level, how things in a namespace are mapped to Seed when importing, here

C API

The C API is documented here

Runtime

Documentation on the Seed builtins and runtime is here

Examples

Seed has a wide variety of examples in git. A partial index of some of the more useful examples is below:

Native Modules

Seed has several C extension modules, to bind libraries not available from GObject-introspection.

readline

Bindings around GNU readline, documented here.

sqlite

Bindings around sqlite, documented here.

canvas

A reimplementation of HTML5 canvas, with some Cairo integration. Documented here

os

A module similar (nearly identical) to python's os module. Not yet documented, python os module documentation is useful.

sandbox

A module which allows execution of code in isolated sandboxes, with new global objects. Documented here

dbus

A module which allows usage of DBus. Not yet documented, but see the dbus-banshee or dbus-consolekit examples.

libxml

A module which allows basic usage of libxml. Not yet documented, or complete, however very similar to the libxml2 python module.