This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!perl | |
| use v5.18; | |
| use strict; | |
| use warnings; | |
| use Test::More; | |
| use Test::Fatal; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- | |
| This file was generated automatically by yaml2plist.pl from ModernPerl.tmLanguage.yaml.ep. | |
| DO NOT edit this file directly. Instead, use yaml2plist.pl to generate it. | |
| --> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>comment</key> | |
| <string>Blaise Roth <[email protected]></string> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [?25l[0;0H[2J[0;0H[38;2;47;46;52;48;2;50;45;46;m▀[38;2;50;45;46;48;2;56;44;41;m▀[38;2;55;45;42;48;2;63;46;39;m▀[38;2;62;46;40;48;2;74;49;37;m▀[38;2;71;50;39;48;2;88;56;37;m▀[38;2;83;55;40;48;2;108;66;39;m▀[38;2;97;63;42;48;2;137;81;42;m▀[38;2;117;74;45;48;2;179;104;48;m▀[38;2;141;89;51;48;2;244;141;57;m▀[38;2;172;108;58;48;2;255;202;74;m▀[38;2;210;132;70;48;2;255;255;106;m▀[38;2;254;163;86;48;2;255;255;174;m▀[38;2;255;198;111;48;2;255;255;255;m▀[38;2;255;238;158;48;2;255;255;255;m▀[38;2;255;255;255;48;2;255;255;255;m▀[38;2;255;255;255;48;2;255;255;255;m▀[38;2;255;252;174;48;2;255;255;255;m▀[38;2;255;230;168;48;2;255;255;255;m▀[38;2;249;222;234;48;2;255;255;255;m▀[38;2;255;255;255;48;2;255;255;255;m▀[38;2;185;213;255;48;2;255;255;255;m▀[38;2;167;255;255;48;2;255;255;255;m▀[38;2;255;255;255;48;2;255;255;255;m▀[38;2;145;255;255;48;2;150;255;255;m▀[38;2;88;155;219;48;2;102;151;195;m▀[38;2;72;111;151;48;2;83;113;140;m▀[38;2;82;144;212;48;2;95;141;188;m▀[38;2;98;224;255;48;2;111;198; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!perl | |
| use v5.38; | |
| use experimental 'class', 'builtin', 'try'; | |
| use builtin 'blessed'; | |
| use Time::HiRes qw[ sleep ]; | |
| use Carp qw[ confess ]; | |
| ## ----------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!perl | |
| use v5.38; | |
| package Test::Foo; | |
| use v5.38; | |
| use experimental 'class'; | |
| sub get_bar (@args) { | |
| Test::Foo::Bar->new( @args ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!perl | |
| use v5.38; | |
| use experimental 'class'; | |
| use Data::Dumper; | |
| use MOP; | |
| class Baz { | |
| method bling { 'BLING' } |
OlderNewer