Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How puts variable in iterators code Ruby EX: (1,2,3).select { |v| puts v > 2}

share|improve this question
7  
What? Could you rephrase? – Sergio Tulentsev Dec 25 '12 at 18:13
1  
You want to write `[1,2,3].select { |v| puts v > 2}´, which works... ? – pbhd Dec 25 '12 at 18:17
Are you asking how to do that. Or you know how to do that, but you want to know how it works? – DWright Dec 25 '12 at 18:32
3  
It's a bit harsh to downvote someone's first question when it looks like English isn't their first language. This isn't a competition it's a community. – iain Dec 25 '12 at 18:53

closed as not a real question by Sergio Tulentsev, sawa, Frederick Cheung, Ismael Abreu, the Tin Man Dec 26 '12 at 3:18

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

Seems syntax error, I think you want something like this

[1,2,3].select { |v| puts v > 2 }

output would be :

false

false

true

Take a look here

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.