lib

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2025 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Buitins = map[string]object.Value{
	"echo": object.BuiltinFunction(func(args ...object.Value) object.Value {
		for i := range args {
			args[i].Text()
		}
		fmt.Println()
		return nil
	}),
	"to_str": object.BuiltinFunction(func(args ...object.Value) object.Value {
		return nil
	}),
}
View Source
var Math = map[string]object.Value{}

Functions

This section is empty.

Types

type Module

type Module struct {
	Name     string
	Builtins map[string]object.Value
	Types    map[string]object.Type
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL