fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. Dim strPrintTest as String
  6. strPrintTest = "Hello, World!" & vbLf & ". . .Again!"
  7. Console.WriteLine(strPrintTest)
  8. End Sub
  9. End Class
Success #stdin #stdout 0.06s 13344KB
stdin
Standard input is empty
stdout
Hello, World!
. . .Again!