Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 394 Bytes

cities.md

File metadata and controls

22 lines (20 loc) · 394 Bytes
layout

{% highlight ruby %}

Tüm bir Array üzerinde

matematik işlemi yapmak

isteseniz dahi

Ruby ne istediğinizi

hemen anlar

cities = %w[ London Oslo Paris Amsterdam Berlin ] visited = %w[Berlin Oslo]

puts "I still need " + "to visit the " + "following cities:", cities - visited {% endhighlight %}