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)
Related languages
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
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())