Tagged Questions
There Is More Than One Way To Do It.
18
votes
19answers
868 views
What constitutes effective Perl training for non-Perl developers?
I've been working with Perl long enough that many of its idiosyncracies have become second nature to me. When new programmers join our group, they frequently have little to no experience with Perl, ...
11
votes
6answers
275 views
Summing the previous values in an IEnumerable
I have a sequence of numbers:
var seq = new List<int> { 1, 3, 12, 19, 33 };
and I want to transform that into a new sequence where the number is added to the preceding numbers to create a ...
5
votes
8answers
283 views
Why are there so many slightly different ways to do the same thing in Ruby?
I am learning Ruby. My background is C++/Java/C#. Overall, I like the language, but I am a little confused about why there are so many different ways to accomplish the same thing, each with their own ...
5
votes
13answers
413 views
Is there some way to make variables like $a and $b in regard to strict?
In light of Michael Carman's comment, I have decided to rewrite the question. Note that 11 comments appear before this edit, and give credence to Michael's observation that I did not write the ...
2
votes
4answers
78 views
What is the value in having several, equally abstract, syntactic variations for coding something?
I am currently reading up on Ruby. I think it is a nice language, but I am a bit bothered by having so many equivalent ways, that are only slightly different in syntax, for coding the same action. For ...
-1
votes
2answers
110 views
“In Ruby there's more than one way of doing the same thing” - what does this mean? [closed]
Feel free to delete this topic if it's discussed or quite obvious. I hail from C# background and I'm planning to learn Ruby. Everything I read about it seems quite intriguing. But I'm confused over ...