Empty program: Difference between revisions

Content deleted Content added
No edit summary
Added C# and VB.NET examples
Line 22: Line 22:
return 0;
return 0;
}
}

==[[CSharp|C#]]==
Compiler: Microsoft (R) Visual C# 2005 Compiler version 8.00

static class Program
{
static void Main(string[] args)
{
}
}

==[[VB.NET|VB.NET]]==
Compiler: Microsoft (R) Visual Basic Compiler version 8.0

Module General
Sub Main()
End Sub
End Module


==[[Java]]==
==[[Java]]==