fork download
  1. Imports System
  2.  
  3. Public Module Module1
  4. Public Sub Main()
  5.  
  6. Dim Str1 As String = "Stack"
  7. Dim Str2 As String = "overflow"
  8.  
  9. Console.WriteLine(Str1 & Str2)
  10. Console.WriteLine(Str1 + Str2)
  11.  
  12. End Sub
  13. End Module
Success #stdin #stdout 0.01s 24144KB
stdin
Standard input is empty
stdout
Stackoverflow
Stackoverflow