Option Strict On
Imports System
Public Module Module1
Public Sub Main()
Console.WriteLine(TwoPlusTwo())
End Sub
Function TwoPlusTwo() As Integer
Return 2 + 2
End Function
End Module