2002-02-25 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / tests / test-52.cs
1 using System;
2
3 class X {
4
5         static string [] a = {
6                 "one", "two", "three"
7         };
8         
9         static int Main ()
10         {
11                 foreach (string s in a){
12                         Console.WriteLine (s);
13                 }
14
15                 return 0;
16         }
17 }