Brainstorming: quoted identifier operator
[email protected] (Branislav Zahradník)
| Newsgroups | perl.perl5.porters |
|---|---|
| Message-ID | <CAB=rbOmBhKoN2Ug=9bCtGc4b4_YW=4ntLOiBXJRdg2inO6w6ag@mail.gmail.com> |
Hi,
just another idea based on my everyday work - let's defined new quoting
operator: quoted identifier.
Let's say it will be `qi`.
Where it can be used?
For example class based test frameworks - where method is a test case:
```
sub qi (this is nicely readable test name) {
}
```
I can imagine web handlers like:
```
sub qi (/user/:id) : GET {
}
```
What do you think about this?
Best regards,
Brano