1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env ruby

class Human
  def initialize(name)
    @name = name
  end
  
  def special
    puts "#{@name} is normal, no special abilities."
  end
  alias_method :abilities, :special
end

mohinder = Human.new('Mohinder')
mohinder.special   # Mohinder is normal, no special abilities.
mohinder.abilities # Mohinder is normal, no special abilities.