Skip to content

Instantly share code, notes, and snippets.

@tobyink
Created June 17, 2014 18:38
Show Gist options
  • Save tobyink/425e3ca9ae6591d499c1 to your computer and use it in GitHub Desktop.
Save tobyink/425e3ca9ae6591d499c1 to your computer and use it in GitHub Desktop.
Weird whitespace bug in fatpack
use Foo;
print Foo::xyz(1), "\n";
print Foo::xyz(0), "\n";
package Foo;
sub xyz {
shift()
? 666
: 999
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment