coding for food
[Ruby] Variable shortcut
silveryen
2022. 7. 19. 13:49
count = 10
count + = 1 # same as 'count = count + 1'
puts count
--------------------------------------------
11