Imports System
Public Module Module1
Public Sub Main()
Console.WriteLine("Hello World")
dim xx as integer? = Nothing
dim yy as integer? = 2
if xx <> yy then
Console.WriteLine("resolved to true")
else
console.WriteLine("resolve to false")
end if
End Sub
End Module