spy16 / parens

Parens is a highly flexible and embeddable LISP toolkit. :computer:
33 stars 3 forks source link

Implement `reader` package #13

Closed spy16 closed 4 years ago

spy16 commented 4 years ago
type Reader interface {
    All() ([]Any, error)
    One() (Any, error)
}
lthibault commented 4 years ago

Any particular reason Reader is now an interface?

spy16 commented 4 years ago

Oh no reader will not be an interface. I was just indicating the high level signatures it would have.

lthibault commented 4 years ago

See #19. WithNumberReader still needs implementing.