fork download
  1. Sub Main()
  2.  
  3. dim a as integer
  4.  
  5. For a = 1 To 6 step 1 ’ to make it count by 2’s use for a = 1 to 6 step 2
  6. Console.WriteLine(a)
  7. Next a
  8. Console.ReadLine()
  9. End Sub
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Visual Basic.Net Compiler version 0.0.0.5943 (Mono 3.8 - tarball)
Copyright (C) 2004-2010 Rolf Bjarne Kvinge. All rights reserved.

/home/qIaoYZ/prog.vb (1,5) : error VBNC30203: Identifier expected.
/home/qIaoYZ/prog.vb (3,5) : error VBNC30203: Identifier expected.
/home/qIaoYZ/prog.vb (5,12) : error VBNC30203: Identifier expected.
/home/qIaoYZ/prog.vb (6,24) : error VBNC30203: Identifier expected.
/home/qIaoYZ/prog.vb (7,18) : error VBNC30203: Identifier expected.
/home/qIaoYZ/prog.vb (8,16) : error VBNC30203: Identifier expected.
/home/qIaoYZ/prog.vb (9,8) : error VBNC30203: Identifier expected.
There were 7 errors and 0 warnings.
Compilation took 00:00:00.6151200
stdout
Standard output is empty