Mega Code Archive
Write some text based on the specified data type
Module Module1
Sub Main()
Console.Write(True)
Console.Write(25)
Console.Write("Some text.")
Console.WriteLine()
Console.WriteLine(True)
Console.WriteLine(25)
Console.WriteLine("Some text.")
End Sub
End Module
True25Some text.
True
25
Some text.