without an e

the lython stirs [01/04/2007 07:43:32]

(import wx)
(class LythonApp (wx.App)
"a python heresy"
(def OnInit (self)
(:= self.frame
(wx.Frame None
(:= title "hello, world")))
(self.frame.Show)
True))

(if (= __name__ "__main__")
(: (:= app (LythonApp))
(app.MainLoop)))

(new comments disabled for now)