[ create a new paste ] login | about

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

Python, pasted on Dec 17:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ workon py33
(py33)
prologic@daisy
Wed Dec 18 00:19:30
~
$ python
Python 3.3.2 (default, Sep 29 2013, 14:48:28) 
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from circuits import Component
>>> class App(Component):
...     def started(self, *args):
...             print("Hello World!")
... 
>>> App().run()
Hello World!
^C>>> 


Create a new paste based on this one


Comments: