Skip to content

Instantly share code, notes, and snippets.

View wesjdj's full-sized avatar

Wes Johnson wesjdj

  • Swiss Data Science Center, ETH Zürich
  • Zürich, Switzerland
View GitHub Profile
1 use 5.16.2;
2 use warnings;
3
4 use Test::More tests => 10;
5
6 is to_roman(1), "I", "1 gets converted to I";
7 is to_roman(2), "II", "2 gets converted to II";
8 is to_roman(3), "III", "3 gets converted to III";
9 is to_roman(4), "IV", "4 gets converted to IV";
10 is to_roman(5), "V", "5 gets converted to V";
@wesjdj
wesjdj / JAPH
Created May 1, 2013 16:43
JAPH
use 5.16.2;
use strict;
use warnings;
print "Just another Perl hacker, \n";