Advertisement
konalisp

C# Hello World

Feb 24th, 2016
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program {
  4.    public static int Main() {
  5.       Console.WriteLine("Hello, World!");
  6.       return 0;
  7.    }
  8.    public string Greet(string arg) {
  9.       return "Hello, " + arg;
  10.    }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement