[SOLVED] CS代考计算机代写 package sexpr

30 $

File Name: CS代考计算机代写_package_sexpr.zip
File Size: 348.54 KB

SKU: 1062535446 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


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”)

//
// ::= | | QUOTE
// ::= NUMBER | SYMBOL
// ::= LPAR RPAR | LPAR RPAR
// ::= DOT
// ::= | epsilon
//
type Parser interface {
Parse(string) (*SExpr, error)
}

func NewParser() Parser {
panic(“TODO: implement NewParser”)
}

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] CS代考计算机代写 package sexpr
30 $