expr

package
v0.0.5 Latest Latest
Warning

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

Go to latest
Published: Apr 29, 2022 License: Unlicense Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Atom

type Atom struct {
	Value interface{}
}

type Defn

type Defn struct {
	Name    Symbol
	Arglist []Symbol
	Body    []Expr
}

type Expr

type Expr interface{}

type If

type If struct {
	Cond        Expr
	TrueBranch  Expr
	FalseBranch Expr
}

type Seq

type Seq struct {
	Exprs []Expr
}

type Set

type Set struct {
	Var   Symbol
	Value Expr
}

type Symbol

type Symbol struct {
	Name string
}

type While

type While struct {
	Cond Expr
	Body []Expr
}

Jump to

Keyboard shortcuts

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