When defining or initializing a method, variable, or file, what case should it be in
snake_case
def this_is_a_great_method # do stuff end
In Ruby, constants are denoted with what format?
all uppercase letters
FOUR = ‘four’
When naming classes, what case format should be used?
CamelCase
# Class naming class MyFirstClass en