Skip to content

Instantly share code, notes, and snippets.

@labster
Created May 1, 2013 17:03
Show Gist options
  • Save labster/5496619 to your computer and use it in GitHub Desktop.
Save labster/5496619 to your computer and use it in GitHub Desktop.
ROMAN numeral
ok 1 - 3 gets converted to III
use v6;
use Lingua::Number;
my &to_roman = &roman-numeral;
use Test;
is to_roman(3), "III", "3 gets converted to III";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment