Abdullah Alattas 

10 Followers
39 Following
9 Posts
Hi! I'm a Ruby developer and enthusiast. I love solving problems and building things with code. In my free time, I like to contribute to open source projects and learn about new technologies. Feel free to reach out if you want to chat about Ruby or anything else!
In Ruby, you can use alternate quoting mechanisms to create strings using the %char{text} syntax. For instance, %q produces a single-quoted string, giving you the flexibility to choose your own delimiters. #Ruby #Programming
Did you know about the * operator in Ruby, also known as the 'splat'? It's super handy for unwrapping arrays and objects that respond to #to_a! #Ruby #programming #coding