Coder Social home page Coder Social logo

swrup / roman Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ghuysmans/roman

0.0 0.0 0.0 16 KB

OCaml module and command line tool to convert a roman numeral to an integer and vice versa

License: BSD 2-Clause "Simplified" License

OCaml 98.38% Makefile 1.62%

roman's Introduction

Roman - convert roman numerals to integer

This repository provides an OCaml module and minimal command line tool to convert modern roman numerals to integer and vice versa:

$ roman mmxv
2015
$ roman 1234
mccxxxiv

The command line tool recognizes integer and roman numerals and emits it after conversion to the opposite format.

The module accepts the syntax for modern roman numerals as defined by Wikipedia and detects illegal syntax like the following:

im
xcc
ic
imm
mxm
viiii
ivi

This little exercise was prompted by an article Radikale Objektorientierung: Teil 2: Verhalten prinzipiengeleitet verfeinern in OBJEKTspektrum issue 2/12015 that used conversion of roman numerals as an example for OO design. The code from that article is available on GitHub.

Build and Test

$ make
$ make test
$ make install

The implementation is in roman.mll and uses ocamllex to build an automaton for recognising roman numerals. To use as a module, simply add it as an ocamlfind dependency in your own project.

Syntax

For the syntax of roman numerals recognised by the module, take a look at roman.mll where it is encoded as a regular expression:

(M|MM|MMM)?
(D?(C|CC|CCC)?|CD|CM)?
(L?(X|XX|XXX)?|XL|XC)?
(V?(I|II|III)?|IV|IX)?

Author

Christian Lindig [email protected]

License

This code is licensed under the BSD 2-clause license.

roman's People

Contributors

lindig avatar ghuysmans avatar swrup avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.