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