#!/usr/bin/env rubyrequire 'erb'person = "myValue!"temp = ERB.new( "Hello, <%= person %>" )puts temp.result( binding ) # => Hello, myValue!