Frame

frame(title)
frame(title, width, height)

frame() creates a Frame of AWT. An event handler to close window is defined.

f = frame("test")
f.show()

Back