<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import java.io.*;

public class MakeFile {

    public static void main(String[] args) throws FileNotFoundException {

	PrintWriter out = new PrintWriter("myfile.txt");
	out.println("Hello World");
	out.close();
    }
}

</pre></body></html>