In ruby methods, you can call without parentheses:
puts 'string'
puts'string'
.
puts10 #NameError: undefined local variable or method `puts10' for main:Object
puts 10 #returns 10
, :
[1,2,3,4].count + 1 #returns 5
[1,2,3,4].count +1 #returns 1 (calls method [1,2,3,4].count with +1 as an argument)