a = [1, 2, 3..9, 10, 15, 20..43]
print a.include?(5) # Returns false
I was expecting it to return true, but 3..9 is not translated to [3,4,5,6,7,8,9].
I am missing something silly but I can't figure it out. Basically I want to initialize it with both regular fixnums and ranges.