blob: eaf75c752d863c264717a581edaba1c7598b0351 [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
#
###############################################################################
import _utils
class A:
def a1(self):
return 1
def a2(self):
return "S"
a = A()
c1 = a.a1() ; _utils.out( "c1", c1 )
c2 = a.a2() ; _utils.out( "c2", c2 )