onewhl / parserCombinators

The parser combinator library written on Kotlin.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

parserCombinators Build Status

The parser combinator library written on Kotlin.

Build instruction:

  • Install Gradle
  • Add Gradle installation path to System Variables/Path (Windows. May also be needed for other OSs)
  • Add JDK Installation path ("JAVA_HOME") to Environment Variables (Windows). More about
  • Run Gradle script: for example, run Windows command prompt and type any of the followings:
    • gradle setup — will configure all required dependencies, .iml-file and project SDK for IntelliJ IDEA
    • gradle test — compile and run tests
    • gradle tasks — more gradle tasks (such as build, jar). You can find .jar in build/libs folder.

OR

  1. Run gradlew script (or gradlew.bat)
  2. In terminal: type
    • gradlew setup to configure idea-based files
    • gradlew test -- compile and run tests
    • gralew jar -- create .jar-file. You can find it in build/libs

About

The parser combinator library written on Kotlin.


Languages

Language:Kotlin 100.0%