Imports System
Imports System.Data
Imports System.Collections
public class MainClass
Shared Sub Main()
Console.WriteLine("5 And 8: " + (CBool(5) And CBool(8)).ToString)
Console.WriteLine("5 And 8: " + (5 And 8).ToString())
End Sub
End Class