[TIL] Starting Ruby Method With Capital Letter

1 · Harisankar P S · April 30, 2016, 6:30 p.m.
Last day while I was browsing through some Java code online, I noticed that some method has names starting with capital letters. I Method names are written in small letters in ruby. This Java code made me wonder if there was anything preventing us from using method names starting with capital letter, in ruby. So I started my irb and wrote the following code. 1 2 3 def Test puts 'testing 123' end And when I ran to call the method Test in the irb i got the following error....