A.
Joined
740 Experience
7 Lessons Completed
0 Questions Solved
Activity
Posted in Loops & Blocks in Ruby Discussion
Is it really "introduction" to loops? I'm talking about the second part
Posted in Methods & Functions in Ruby Discussion
My comment's gonna be the first
Posted in Integers & Floats in Ruby Discussion
The fact that operators are actually methods just blew my mind!
Posted in Strings in Ruby Discussion
In this lesson you tell about brackets usage for better understanding that methods take arguments.
puts "text".count "a" - looks like syntax sugar, and it seems like this can lead to misunderstanding in the future.
Does it make sense to do it like in the following example instead?
puts( "text".count( "a" ) )