Exercise 1: A Good First Program
inspired by http://learnpythonthehardway.org/book/ex1.html
Type the following text :
using System;
public class Test
{
public static void Main()
{
Console.WriteLine("Hello World!");
Console.WriteLine("Hello Again");
Console.WriteLine("I like typing this.");
Console.WriteLine("This is fun.");
Console.WriteLine("I'd much rather you 'not'.");
}
}
No comments:
Post a Comment