#!/usr/local/bin/python
#
# File:        helloclient
# Copyright:   (c) 2001 The Regents of the University of California
# Revision:    @(#) $Revision: 4434 $
# Date:        $Date: 2005-03-17 09:05:29 -0800 (Thu, 17 Mar 2005) $
# Description: Simple Hello World Python client 
#

#import sidl.BaseClass
import Hello.World

if __name__ == '__main__':
  h = Hello.World.World ()
  print h.getMsg ()
