Skip to content

Instantly share code, notes, and snippets.

@worldofprasanna
Created January 9, 2019 02:14
Show Gist options
  • Save worldofprasanna/7de525292b7701c236fec9d7c50ae6b0 to your computer and use it in GitHub Desktop.
Save worldofprasanna/7de525292b7701c236fec9d7c50ae6b0 to your computer and use it in GitHub Desktop.
For blog on things I like about ruby
# Functions with ?
a = 0
a.zero?
a.nil?
# Loop statement
10.times do
puts "Hello Ruby !!!"
end
# Conditional statement
puts "zero" if a.zero?
# All expression returns value
b = if a.zero?
"free"
else
"paid"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment