This example outputs HTML markup.
Code[]
import groovy.xml.* import java.io.*
Output[]
<html>
<head>
<title>blah</title>
</head>
<body>
<h1>hello world!</h1>
</body>
</html>
This example outputs HTML markup.
import groovy.xml.* import java.io.*
<html>
<head>
<title>blah</title>
</head>
<body>
<h1>hello world!</h1>
</body>
</html>