印象深刻的Ruby例子

前端之家收集整理的这篇文章主要介绍了印象深刻的Ruby例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在某些日子里,我正在大学谈论一个Rails项目,我想向 Ruby介绍观众.

我想向他们展示一两个非常好的代码示例来演示Ruby是多么棒的.

你知道一个很好的例子吗?

最好的祝福

解决方法

我强烈建议使用.each,.inject和/或.collect.例如:
# Sum 1,3,5,7,9,11,13
[1,13].inject { |a,b| a+b }

要么

# Print out all of the files in a directory
Dir.glob('./my_cool_directory/*').each do |file|
  puts file
end

要么

# Find the length of all of the strings
["test","hello there","how's life today?"].collect{ |string| string.length }
原文链接:https://www.f2er.com/ruby/269490.html

猜你在找的Ruby相关文章