[ytti@ytti.fi ~]% ./asdf.rbProcmoijee[ytti@ytti.fi ~]% cat asdf.rb#!/usr/bin/env ruby def jee &block moi(block)end def moi jee p jee.class puts 'moi' jee.callend jee do |hehhi| puts 'jee'end[ytti@ytti.fi ~]%