Skip to content

martynassateika/numbers-to-lithuanian-words-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Numbers to Lithuanian words converter

A Java 8 library allowing conversion of numbers to Lithuanian words.

Building from source

  • Clone the project
  • cd into the project directory
  • Run mvn clean install

Example

NumberConverter converter = NumberConverter.create();
String words = converter.toLithuanian(123); // "šimtas dvidešimt trys"

Links