Guest User

Untitled

a guest
Feb 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1.  
  2. >> a = %w(a b c d e f)
  3. => ["a", "b", "c", "d", "e", "f"]
  4. >> a.include?("f")
  5. => true
  6. >> a.include?("r")
  7. => false
  8. >>
Add Comment
Please, Sign In to add comment