Yurii Kadirov
@sirkadirov
Lviv, Ukraine
1 Followers
Computer science student, free software developer, public figure, head of NGO "Supreme Order".
Working on video Drops 🍿 p.s. video codecs are pure magic
1
0
You can also share and discuss code snippets with the new quote feature 🤓 and it will do syntax highlighting ⚡️⚡️⚡️ Just select the code "< >" option in the Drop compose dialog in the quote editor.
# The Greeter class
class Greeter
  def initialize(name)
    @name = name.capitalize
  end

  def salute
    puts "Hello #{@name}!"
  end
end

# Create a new object
g = Greeter.new("glue")

# Output "Hello Glue!"
g.salute
3
4