Learn
There are many different kinds of variables you’ll encounter as you progress through these courses, but right now we’re just concerned with regular old local variables. By convention, these variables should start with a lowercase letter and words should be separated by underscores, like counter
and masterful_method
. Ruby won’t stop you from starting your local variables with other symbols, such as capital letters, $
s, or @
s, but by convention these mean different things, so it’s best to avoid confusion by doing what the Ruby community does.
Instructions
1.
Create a variable name
in the editor and set it equal to your name as a string (between quotes, like this: "Eric"
). Your string can be capitalized, but name
should be all lower case!
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.