Changes between Initial Version and Version 1 of CallingIronPythonRecipe
- Timestamp:
- 05/30/09 05:49:21 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CallingIronPythonRecipe
v1 v1 1 With Iron Python version 1.1.0 2 3 4 {{{ 5 use IronPython.Hosting 6 use IronPython.Runtime.Types 7 use IronPython.Runtime.Operations 8 9 class Program 10 11 def main 12 engine = PythonEngine() 13 code = 'print "This is IronPython"' 14 engine.execute(code) 15 }}} 16 17 Additional information at [http://www.voidspace.org.uk/ironpython/embedding.shtml]