Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created January 28, 2013 03:37
Show Gist options
  • Select an option

  • Save yangsu/4652821 to your computer and use it in GitHub Desktop.

Select an option

Save yangsu/4652821 to your computer and use it in GitHub Desktop.
Ruby Duck Typing
i = 0
a = ['100', 100.0, '50', 50.0]
while i < a.size
<b>puts a[i].to_i</b>
i = i + 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment