Skip to content

Instantly share code, notes, and snippets.

// holds script-specific information (i.e. how to load the script data,
// name of the script, script runtime version required, etc.)
type Script struct {
}
// parameters to the script, TBD if key/value or positional
type ScriptParam struct {
}
// current script execution scope. Defines global variables, pre-exising variables
// from the current scope, etc.
type Scope struct {