Skip Menu |

This queue is for tickets about the Type-Tiny CPAN distribution.

Report information
The Basics
Id: 131032
Status: rejected
Priority: 0/
Queue: Type-Tiny

People
Owner: Nobody in particular
Requestors: perl [...] evancarroll.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Why do you quote module names?
Why do you quote your module names? Why "Type::Tiny"->new rather than Type::Tiny->new -- Evan Carroll System Lord of the Internets http://www.evancarroll.com
On 2019-11-19T18:48:00Z, ECARROLL wrote: Show quoted text
> Why do you quote your module names? > Why "Type::Tiny"->new rather than Type::Tiny->new
What do you think $thing is in the code below? #### package Type { use HTTP::Tiny; use constant Tiny => 'HTTP::Tiny'; } my $thing = Type::Tiny->new;