Yet another fairly simple signature... :)#!/usr/bin/perl -w use strict; my @n = qw(6 4 2 4);$,="\n"; my @o; for (my $i=0;$i < @n;$i++){ push (@o, chr(ord(substr($^X,$i,1))- $n[$i]) );}$_=join(".",@o);s/(.*)/$1./;print $_, "";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: $^X signature
by higle (Chaplain) on Sep 13, 2001 at 20:14 UTC | |
by one4k4 (Hermit) on Sep 13, 2001 at 21:14 UTC | |
by higle (Chaplain) on Sep 13, 2001 at 21:47 UTC | |
by jynx (Priest) on Sep 13, 2001 at 21:40 UTC | |
Re: $^X signature
by John M. Dlugosz (Monsignor) on Sep 14, 2001 at 09:29 UTC |