coding for food

[Ruby] Variable shortcut

silveryen 2022. 7. 19. 13:49

count = 10

count + = 1   # same as 'count = count + 1'

puts count

--------------------------------------------

11

 

저작자표시 비영리 변경금지 (새창열림)