#!/usr/local/bin/ruby def hi(name = "world") puts "Hello, #{name.capitalize}" end if __FILE__ == $0 hi hi() hi("marCus") hi "matz" end