(System.Reflection.Assembly/LoadWithPartialName "System.Windows.Forms") (import '(System.Windows.Forms Form)) (import '(System.Windows.Forms Label)) (import '(System.Windows.Forms Application)) (def form (Form.)) (doto form (.set_Size (new System.Drawing.Size 640 480)) (.set_Text "Hello, World!") ) (def label1 (Label.)) (doto label1 (.set_Size (new System.Drawing.Size 320 20)) (.set_Text "Hello, Windows Forms(ClojureCLR) World!") ) (doto (.Controls form) (.Add label1)) (. Application Run form)