package sexpr
import “errors”
// ErrParser is the error value returned by the Parser if the string is not a
// valid term.
// See also https://golang.org/pkg/errors/#New
// and // https://golang.org/pkg/builtin/#error
var ErrParser = errors.New(“parser error”)
//
//
//
//
//
//
//
type Parser interface {
Parse(string) (*SExpr, error)
}
func NewParser() Parser {
panic(“TODO: implement NewParser”)
}