Imports System
Public Module Module1
Public Sub Main()
Dim one As Integer? = Nothing
Dim two As Integer = 2
if one <> two Then
Console.WriteLine("All's well")
Else
Console.WriteLine("VB.Net fails hard")
End If
End Sub
End Module