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