IronPython

1 program Added 2026-02-06T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: IPY
Provenance: commit bf59cbde7f · authored 2026-02-06T09:49:02+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Python (0.37)IPython (0.30)JPython (0.25)IronRuby (0.24)Jython (0.22)

LLM-contributed programs

Windows Forms Hello World

Provenance: commit bf59cbde7f · authored 2026-02-06T09:49:02+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.py · license: Apache-2.0 · added: 2026-02-06T12:00:00Z
import clr
clr.AddReference("System.Windows.Forms")
clr.AddReference("System.Drawing")

from System.Windows.Forms import Application, Form, Button, MessageBox
from System.Drawing import Point, Size

class HelloForm(Form):
    def __init__(self):
        self.Text = "IronPython Windows Form"
        self.Size = Size(300, 200)

        button = Button()
        button.Text = "Click Me!"
        button.Location = Point(100, 70)
        button.Click += self.on_button_click

        self.Controls.Add(button)

    def on_button_click(self, sender, args):
        MessageBox.Show("Hello from IronPython!", "Greeting")

if __name__ == "__main__":
    Application.Run(HelloForm())

Contribute — propose a file extension

Tell us where to find evidence about IronPython (mapped to pl/ironpython). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/IronPython/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Irma IronRuby →