9 lines
168 B
Scala
9 lines
168 B
Scala
package wacc
|
|
|
|
import parsley.Result
|
|
|
|
object parser {
|
|
def parse(input: String): Result[String, BigInt] = parser.parse(input)
|
|
private val parser = lexer.fully(???)
|
|
}
|