Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
PHP | Gawk | C言語 | D言語 | GO言語 | Excel2007 | COBOL |
Bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
Tcl | Ruby | Groovy | Java | C# | Vim | |
Python | Erlang | Scala | OCaml | VBScript | JavaScript | |
Io言語 | Haskell | Windows | Linux |
C#(mono) > Formを使う
swing.cs
using System.Windows.Forms; using System.Drawing; class Test : Form { static void Main() { Application.Run(new Test()); } public Test() { this.Size = new Size(300,200); } }
$ mcs swing.cs -r:System.Windows.Forms.dll
-r:System.Drawing.dll
$ mono swing.exe
-r:System.Drawing.dll
$ mono swing.exe
* 確認環境 Debian Linux(Wheezy)