Skip to content

Instantly share code, notes, and snippets.

@typester
Created May 27, 2009 01:42
Show Gist options
  • Save typester/118416 to your computer and use it in GitHub Desktop.
Save typester/118416 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use YAML::XS;
use Storable qw/freeze thaw/;
my $re = qr/test/;
my $re2 = thaw freeze $re;
warn Dump $re; # => --- !!perl/regexp (?-xism:test)
warn Dump $re2; # => --- !!perl/scalar:Regexp ~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment