Skip to content

Instantly share code, notes, and snippets.

View jdoege's full-sized avatar

Jason Doege jdoege

  • Intel
  • austin, TX
View GitHub Profile
use v6;
sub MAIN ( Str :$mapfile!, Str :$patfile!, Str :$outfile! ) {
say "mapfile: $mapfile";
say "patfile: $patfile";
say "outfile: $outfile";
# Read Channel Map
my $MFH = open "$mapfile", :r;
for $MFH.lines -> $line {
}