fork download
  1. Dim index As Integer = 5
  2. Do While index <= 10
  3. Debug.Write(index.ToString & " ")
  4. index += 2
  5. Loop
  6. Debug.WriteLine("")
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
Dim	index	As	Integer	=	5
^
1 error
stdout
Standard output is empty