Skip to content

AndyNoob/math-expressions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Math Expressions


discord banner

A lil one class library to quickly evaluate simple math expressions. Or just to parse it and apply syntax highlighting.

How 2 Use

(just click the jitpack badge)

Maven (edit pom.xml)
    <repositories>
        ...
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
        ...
    </repositories>
    <dependencies>
        ...
        <dependency>
            <groupId>com.github.AndyNoob</groupId>
            <artifactId>math-expressions</artifactId>
            <version>INSERT VERSION HERE!!!!!!</version>
        </dependency>
        ...
    </dependencies>
Gradle (edit build.gradle)
repositories {
    // ...
    maven { url 'https://jitpack.io' }
    // ...
}
dependencies {
    // ...
    implementation 'com.github.AndyNoob:math-expressions:INSERT VERSION HERE !!!'
    // ...
}