File: test.pl

package info (click to toggle)
freecell-solver 2.8.10-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 2,864 kB
  • ctags: 1,215
  • sloc: ansic: 14,713; sh: 10,555; perl: 451; python: 349; makefile: 99
file content (9 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
use strict;

use FreeCell::Card;

use Data::Dumper;

my $card = FreeCell::Card::from_string($ARGV[0]);
my $d = Data::Dumper->new([$card], [ '$card']);
print $d->Dump();