Difference between revisions of "Shell scripts"
From GeodesyLab
Line 1: | Line 1: | ||
− | <source lang=" | + | <source lang="csharp"> |
− | + | // Hello World in Microsoft C# ("C-Sharp"). | |
− | + | ||
− | + | using System; | |
− | + | ||
− | + | class HelloWorld | |
− | + | { | |
− | + | public static int Main(String[] args) | |
+ | { | ||
+ | Console.WriteLine("Hello, World!"); | ||
+ | return 0; | ||
+ | } | ||
+ | } | ||
</source> | </source> |
Revision as of 19:27, 4 February 2008
<source lang="csharp"> // Hello World in Microsoft C# ("C-Sharp").
using System;
class HelloWorld {
public static int Main(String[] args) { Console.WriteLine("Hello, World!"); return 0; }
} </source>