Guest User

Untitled

a guest
Jul 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. require "erb"
  2.  
  3.  
  4. a = 1
  5. b = 2
  6.  
  7. template = "
  8.  
  9. <h1>a = <%= a %></h1>
  10. <h1>b = <%= b %></h1>
  11.  
  12. "
  13.  
  14. puts ERB.new(template, nil, "%-<>").result(binding)
  15.  
  16. # output:
  17. #
  18. #
  19. # <h1>a = 1</h1>
  20. # <h1>b = 2</h1>
  21. #
  22. #
Add Comment
Please, Sign In to add comment