I write perl everyday, I never use this stuff.
Perl secret operators and constants
11–20 of 46 posts
Re: Perl secret operators and constants
#12I write perl everyday, I never use this stuff.
+"123234" +"1e29" +"abc" // -> NaN
Re: Perl secret operators and constants
#13Re: Perl secret operators and constants
#14Re: Perl secret operators and constants
#15But it's a really deep language, and not necessarily in ways that academic language designers want it to be. Perl always feels more like having a conversation with your computer than programming it. These kinds of operators are like having a whole host of additional highbrow verbs you can use in conversation if you want.
Re: Perl secret operators and constants
#16Perl seems like a great language for a lot of text processing jobs, but while its learning curve isn't too steep, it goes on forever. I will continue to use it for quick little projects like cleaning up excel files, but I don't think I could ever get into things like Perl golf.
Re: Perl secret operators and constants
#17It's articles like this that give Perl a bad reputation.
Re: Perl secret operators and constants
#18Re: Perl secret operators and constants
#19I write perl everyday, I never use this stuff.
I use a few of them in javascript. In fact, Venus can be shortened to just "+", ie. +"123234" +"1e29" +"abc" // -> NaN
print +(1 + 2) * 3;
print ((1 + 2) * 3);
print (1 + 2) * 3;