docs
[mirrors/Programs.git] / perl / input.pl
CommitLineData
21c4e167
H
1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Digest::MD5;
5my $in = <>;
6chop($in);
7print Digest::MD5->md5_hex($in)."\n";
8
This page took 0.140344 seconds and 4 git commands to generate.