DEV Community

Jorge-Pioquinto
Jorge-Pioquinto

Posted on

TIL #2

This post should have been posted on Aug 02. Forgot to make the link public.

Today I finally started learning Ruby in the course provided by Codecademy. I am very positive that I will be able to learn and master Ruby. It is very similar to Python which was my first self-taught coding language back in 2018.

The only bad habit that need to shed is to not use parentheses when I am printing.

#Python 3
message = "Hello World!"
print(message)
Enter fullscreen mode Exit fullscreen mode
#Ruby
message = "Hello World!"
puts message
Enter fullscreen mode Exit fullscreen mode

Top comments (0)