Sandwich Continued - Groovin' with Groovy
import java.io.*

f = new File("ex14.out")
try {                           // Top Bread
    w = new FileWriter(f)       // |
    w.write("Hello, World\n")   // Meat
} finally {                     // Bottom Bread
    w.close()                   // |
}                               // |

[Example 14 Output]

Example 14