[ create a new paste ] login | about

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

Python, pasted on Nov 8:
1
2
3
4
5
6
class A:
    def g(args): 
        return 'hello world'

a = A()
print(a.g())


Output:
1
hello world


Create a new paste based on this one


Comments: