ironpython

Solutions on MaxInterview for ironpython by the best coders in the world

showing results for - "ironpython"
Camil
15 Jan 2018
1using System;
2using IronPython.Hosting;
3using Microsoft.Scripting.Hosting;
4 
5namespace IronPythonApp
6{
7    class Program
8    {
9        static void Main(string[] args)
10        {
11            ScriptEngine engine = Python.CreateEngine();
12            engine.Execute("print 'hello, world'");
13        }
14    }
15}
16