Skip to content

Instantly share code, notes, and snippets.

@ThisGuyCodes
Created May 30, 2015 17:37
Show Gist options
  • Save ThisGuyCodes/bda08dff6224c18f9d46 to your computer and use it in GitHub Desktop.
Save ThisGuyCodes/bda08dff6224c18f9d46 to your computer and use it in GitHub Desktop.
class Array
def new(size)
counter = 0
#some magic to set the array length to the size variable
while counter < size do
self[counter] = yield
counter = counter + 1
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment