You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
2.5 KiB
Go

12 years ago
package main
import (
"fmt"
"reflect"
)
type special func(*environment, ...interface{}) (interface{}, error)
12 years ago
type nargsInvalidError struct {
expected int
received int
name string
}
func (n nargsInvalidError) Error() string {
return fmt.Sprintf(`received %d arguments in *%v*, expected %d`,
n.received, n.name, n.expected)
12 years ago
}
// defines the built-in "define" construct. e.g.:
//
// (define x 5)
//
// would create the symbol "x" and set its value to 5.
12 years ago
func define(env *environment, args ...interface{}) (interface{}, error) {
if len(args) != 2 {
12 years ago
return nil, nargsInvalidError{2, len(args), "define"}
12 years ago
}
12 years ago
s, ok := args[0].(symbol)
if !ok {
return nil, fmt.Errorf(`first argument to *define* must be symbol, received %v`, reflect.TypeOf(args[0]))
}
12 years ago
v, err := eval(args[1], env)
if err != nil {
return nil, err
}
env.set(s, v)
12 years ago
return nil, nil
}
// defines the built-in "quote" construct. e.g.:
//
// (quote (1 2 3))
//
// would evaluate to the list (1 2 3). That is, quote is a function of arity 1
// that is effectively a no-op; the input value is not evaluated, which
// prevents evaluation of the first element of the list, in this case 1.
12 years ago
func quote(_ *environment, args ...interface{}) (interface{}, error) {
12 years ago
if len(args) != 1 {
return nil, nargsInvalidError{1, len(args), "quote"}
}
12 years ago
return args[0], nil
12 years ago
}
12 years ago
// defines the built-in "if" contruct. e.g.:
//
// (if #t "foo" "bar")
//
// would evaluate to "foo", while the following:
//
// (if #f "foo" "bar")
//
// would evaluate to "bar"
12 years ago
func _if(env *environment, args ...interface{}) (interface{}, error) {
if len(args) != 3 {
12 years ago
return nil, nargsInvalidError{3, len(args), "if"}
12 years ago
}
12 years ago
v, err := eval(args[0], env)
if err != nil {
return nil, err
}
12 years ago
if b, ok := v.(bool); ok && !b {
return eval(args[2], env)
}
return eval(args[1], env)
}
12 years ago
// defines the built-in "set" construct, which is used to set the value of an
// existing symbol in the provided environment. e.g.:
//
// (set! x 5)
//
// would set the symbol x to the value 5, if and only if the symbol x was
// previously defined.
12 years ago
func set(env *environment, args ...interface{}) (interface{}, error) {
if len(args) != 2 {
12 years ago
return nil, nargsInvalidError{2, len(args), "set!"}
12 years ago
}
12 years ago
s, ok := args[0].(symbol)
if !ok {
return nil, fmt.Errorf(`first argument to *set!* must be symbol, received %v`, reflect.TypeOf(args[0]))
}
12 years ago
if !env.defined(s) {
return nil, fmt.Errorf(`cannot *set!* undefined symbol %v`, s)
}
12 years ago
v, err := eval(args[1], env)
if err != nil {
return nil, err
}
env.set(s, v)
12 years ago
return nil, nil
}