Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 1.1 KB

README.md

File metadata and controls

30 lines (26 loc) · 1.1 KB

About this project

Numbers is a Java library aiming to provide useful types and operations for arithmetics.

Available features:

  • Compute the greatest common divisor of two integers
  • Manipulate fractions and run basic arithmetic operations (addition, substraction, multiplication, division, inversion) with such numbers

Current release

Version 0.1.0-RELEASE was released on September, the 8th 2017.

Usage

Numbers is available in the Maven Central Repository. Its latest release can be added to your project in multiple ways:

  • Declare a dependency in your Maven pom.xml:
<dependency>
  <groupId>io.github.fraj</groupId>
  <artifactId>numbers</artifactId>
  <version>0.1.0-RELEASE</version>
</dependency>
  • Declare a dependency in your Gradle build.gradle:
dependencies {
  compile group: 'io.github.fraj', name: 'numbers', version: '0.1.0-RELEASE'
}

License

Numbers is distributed under the Apache License, version 2.0.