fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. ' your code goes here
  6.  
  7.  
  8. Dim Options() As String = {"00000000", "11111111"}
  9. For x As Integer = 0 To 2
  10. For y As Integer = 0 To 2
  11. Debug.Print(Options(x) & " " & Options(y))
  12. Next
  13. Next
  14.  
  15. End Sub
  16. End Class
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/xrBUfa/prog.vb (11,23) : error VBNC30451: 'Debug' is not declared. It may be inaccessible due to its protection level.
/home/xrBUfa/prog.vb (10,18) : warning VBNC42024: Unused local variable: 'y'.
/home/xrBUfa/prog.vb (9,14) : warning VBNC42024: Unused local variable: 'x'.
There were 1 errors and 2 warnings.
Compilation took 00:00:00.9661780
stdout
Standard output is empty