home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 October - Disc 2 / PCNET_CD_2006_10_2.iso / apps / k3d-all-in-one-setup-0.5.14.0.exe / k3d-setup-0.5.14.0.exe / share / scripts / script_recursion.py < prev    next >
Encoding:
Text File  |  2006-05-12  |  154 b   |  12 lines

  1. #python
  2. import k3d
  3.  
  4. k3d.ui.message("Howdy,")
  5.  
  6. recursive_script = """#python
  7. import k3d
  8. k3d.ui.message("World!")
  9. """
  10.  
  11. k3d.execute_script(recursive_script)
  12.