Skip to content

Instantly share code, notes, and snippets.

@CeleritasCelery
Created March 12, 2018 17:04
Show Gist options
  • Save CeleritasCelery/0cc71fe613ccd1577794caa0b4a631c7 to your computer and use it in GitHub Desktop.
Save CeleritasCelery/0cc71fe613ccd1577794caa0b4a631c7 to your computer and use it in GitHub Desktop.
#!/usr/intel/pkgs/perl/5.14.1/bin/perl
use feature 'say';
use Data::Dumper;
use warnings;
use strict;
use Enbugger 'trepan';
my $dummy = 5;
# random code
Enbugger->stop;
srand 1;
my @values = (1, 2, 3, 4 ,5);
my $pad = '0' x 15;
my $datachain = join q{}, @values;
my $flush = '0' x (length($pad) + length($datachain));
print "--$flush--\n";
print "--$pad$datachain--\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment