Here is the output of the applet:
and this is the code for it:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world from Ramón!", 20, 15);
}
}