Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created January 22, 2020 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/48c41679a56f54c34e0a80fc28c3d22e to your computer and use it in GitHub Desktop.
Save Whateverable/48c41679a56f54c34e0a80fc28c3d22e to your computer and use it in GitHub Desktop.
greppable6
File Code
UGEXE/zef
…/Test.pm6 :25:
my @cur-p6lib = $env<PERL6LIB>.?chars ?? $env<PERL6LIB>.split($*DISTRO.cur-sep) !! ();
UGEXE/zef
…/Test.pm6 :27:
$env<PERL6LIB> = (|@new-p6lib, |@cur-p6lib).join($*DISTRO.cur-sep);
UGEXE/zef
…/prove.pm6 :35:
my @cur-p6lib = $env<PERL6LIB>.?chars ?? $env<PERL6LIB>.split($*DISTRO.cur-sep) !! ();
UGEXE/zef
…/prove.pm6 :37:
$env<PERL6LIB> = (|@new-p6lib, |@cur-p6lib).join($*DISTRO.cur-sep);
tadzik/panda
…/bootstrap.pl :56:
my $env_sep = $DISTRO.?cur-sep // $DISTRO.path-sep;
tadzik/panda
…/Common.pm :33:
my $sep = $*DISTRO.?cur-sep // $*DISTRO.path-sep;
ugexe/zef
…/Test.pm6 :24:
my @cur-p6lib = %ENV<PERL6LIB>.?chars ?? %ENV<PERL6LIB>.split($*DISTRO.cur-sep) !! ();
ugexe/zef
…/Test.pm6 :26:
%ENV<PERL6LIB> = (|@new-p6lib, |@cur-p6lib).join($*DISTRO.cur-sep);
ugexe/zef
…/prove.pm6 :32:
my @cur-p6lib = %ENV<PERL6LIB>.?chars ?? %ENV<PERL6LIB>.split($*DISTRO.cur-sep) !! ();
ugexe/zef
…/prove.pm6 :34:
%ENV<PERL6LIB> = (|@new-p6lib, |@cur-p6lib).join($*DISTRO.cur-sep);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment