Learn
Well done! Now let’s spice up our initialize
method by passing it some parameters and setting some instance variables.
Instructions
1.
Update initialize
to take two parameters, username
and password
. In the body of initialize
, set the instance variables @username
and @password
(respectively) to these parameters.
In your initialize
method, you’ll also want to create a @files
instance variable and set this to an empty hash. This is so we can keep track of our files later!
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.