blob: 9a706655c1e36169ad0fd8088d507ab565b5c76f [file] [log] [blame]
###############################################################################
# Copyright (c) 2005, 2007 IBM Corporation and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
###############################################################################
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()