cinneesol / main

Implementations of Python and Ruby programming languages for .NET Framework that are built on top of the Dynamic Language Runtime.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IronPython

IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily.

IronPython can be obtained at http://ironpython.net/.

Comparison of IronPython vs. C# for 'Hello World'

c#:

using System;
class Hello
{
    static void Main() 
    {
        Console.WriteLine("Hello World");
    }
}

IronPython:

print "Hello World"

IronPython is a Dynamic Language that runs on the .NET DLR (Dynamic Language Runtime) in contrast with VB.NET and C# which are static languages.

Iron Python can also import DLL files compiled in other languages and use functions defined therein. For example:

import clr
clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import *

Documentation

Documentation can be found here:

  1. http://stackoverflow.com/documentation/ironpython/topics
  2. http://ironpython.net/documentation/dotnet/

Additional information

Please see http://wiki.github.com/IronLanguages/main for information on:

  • Setting up a development environment with easy access to utility scripts
  • Building
  • Running test

Chat/Communication

Join our Gitter-Chat under: https://gitter.im/IronLanguages/main

About

Implementations of Python and Ruby programming languages for .NET Framework that are built on top of the Dynamic Language Runtime.


Languages

Language:Python 38.4%Language:Ruby 26.5%Language:C# 22.0%Language:HTML 11.9%Language:C 0.2%Language:C++ 0.2%Language:JavaScript 0.1%Language:Visual Basic 0.1%Language:CSS 0.1%Language:PowerShell 0.1%Language:TeX 0.1%Language:Yacc 0.1%Language:Batchfile 0.0%Language:PLSQL 0.0%Language:Logos 0.0%Language:Makefile 0.0%Language:ASP 0.0%Language:Ragel in Ruby Host 0.0%Language:1C Enterprise 0.0%Language:R 0.0%Language:XSLT 0.0%Language:eC 0.0%Language:Objective-C 0.0%Language:PHP 0.0%Language:REXX 0.0%Language:Shell 0.0%Language:Groff 0.0%Language:DIGITAL Command Language 0.0%