Ruby - Variables and Data Types
Analyze this Ruby code:
What will be the output?
def sum_values amount = 50 Amount = 100 amount += Amount puts amount end sum_values
What will be the output?
