res.setContentType("text/html");
PrintWriter out = res.getWriter();
out.println("<HTML>");
out.println("<HEAD><TITLE>Burrito Inventory Consumer</TITLE></HEAD>");
out.println("<BODY><BIG>");
if (inventory.makeBurrito()) {
out.println("Your burrito will be ready in a few minutes.");
}
else {
out.println("We're low on ingredients.<BR>");
out.println("Looks like you're gonna starve.");
}
out.println("</BIG></BODY></HTML>");