Created
August 1, 2012 22:31
-
-
Save jonahlyn/3231283 to your computer and use it in GitHub Desktop.
Groovy SimpleTemplateEngine Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import groovy.text.SimpleTemplateEngine | |
def text = '''Hello $name, | |
This is a mult-line string.''' | |
def binding = [name: "Jonahlyn"] | |
def engine = new SimpleTemplateEngine() | |
template = engine.createTemplate(text).make(binding) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment