Skip to content

Instantly share code, notes, and snippets.

@chrisseaton
Last active April 24, 2018 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisseaton/f38ad4143a8fc6dc40cdcaf38aec1daf to your computer and use it in GitHub Desktop.
Save chrisseaton/f38ad4143a8fc6dc40cdcaf38aec1daf to your computer and use it in GitHub Desktop.
require 'erb'
x = 42
template = ERB.new <<-EOF
The value of x is: <%= x %>
EOF
loop do
puts template.result(binding)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment