Hello,
First, the code ;-)
using System;
public class CountTest {
public static void Main(string[] args)
{
int count;
while (count != 10)
Console.WriteLine(count++);
}
}
Second, the problem ;-)
run that with mint and you get the expected output.
run that with mono and output is well.... buggy :-)
Cheers,
Adam