blob: ab97320e733fb8c249e1e13271b07056da3fd2cb [file] [log] [blame]
###############################################################################
# Copyright (c) 2005, 2007 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
###############################################################################
a = 10
b = 20
q = "This is COOL"
a = "This"
b = []
q = {}
t = a + b
q = a * b
def g():
print 20
class A(object):
uo = "Cool"
def __init__( self ):
self.a = 200
def f( self, t ):
self.q = 500
aInstance = A()