[ create a new paste ] login | about

Link: http://codepad.org/rz3MvfWL    [ raw code | fork ]

amulet - Python, pasted on Jul 16:
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

import sys
from PyQt4.QtGui import *

app = QApplication(sys.argv)

button = QPushButton("&Quit")
button.clicked.connect(button.close)
button.show()

app.exec_()


Create a new paste based on this one


Comments: