Skip to content

Instantly share code, notes, and snippets.

@MzHmO
Created June 5, 2024 08:31
Show Gist options
  • Save MzHmO/ca540bbb923fc80f5596ff166fc79cd7 to your computer and use it in GitHub Desktop.
Save MzHmO/ca540bbb923fc80f5596ff166fc79cd7 to your computer and use it in GitHub Desktop.
hi.py
using System;
using System.IO;
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
class Program
{
static void Main(string[] args)
{
var engine = Python.CreateEngine();
var pythonScript = @"print('hello world')";
engine.Execute(pythonScript);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment