packages feed

parsley-1.0.0.1: test/Parsley/Combinator/Parsers.hs

module Parsley.Combinator.Parsers where

import Parsley (Parser)
import Parsley.Combinator (oneOf)

abc :: Parser Char
abc = oneOf ['a', 'b', 'c']

nothing :: Parser Char
nothing = oneOf []