e46a49ecf1
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
15 lines
170 B
C#
15 lines
170 B
C#
using System;
|
|
|
|
class X
|
|
{
|
|
public static int Main ()
|
|
{
|
|
object o = null;
|
|
for (o = "abcd"; o is String s; o = null) {
|
|
Console.WriteLine (s);
|
|
}
|
|
|
|
|
|
return 0;
|
|
}
|
|
} |