Created
August 1, 2012 22:29
-
-
Save jonahlyn/3231270 to your computer and use it in GitHub Desktop.
Groovy Markup Builder 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.xml.MarkupBuilder | |
def mkp = new MarkupBuilder() | |
mkp.html { | |
body { | |
p "Hello" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment