Guest User

Untitled

a guest
Apr 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. jobs = Array.new
  2.  
  3. jobs << {:name => 'Railroad Tycoon', :salary => 100000000 }
  4. jobs << {:name => 'Nike Textile Laborer', :salary => 1.5 }
  5.  
  6. legal_jobs = jobs.select { |job| job[:salary] > 5.25 }
Add Comment
Please, Sign In to add comment