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