fork download
  1. using System;
  2. public class ForLoopTest
  3. {
  4. public static void Main()
  5. {
  6. for (int i = 1; i <= 3; i++)
  7. {
  8. Console.WriteLine("Test " + i.ToString());
  9. }
  10. }
  11. }
Success #stdin #stdout 0.05s 23960KB
stdin
Standard input is empty
stdout
Test 1
Test 2
Test 3