aboutsummaryrefslogtreecommitdiff
path: root/examples/vb/default.vb
blob: 479aa066360b53159ea2adfb056c40b48bb1347c (plain)
1
2
3
4
5
6
7
8
9
10
11
Imports System

Module Program
    Function Square(num As Integer) As Integer
        Return num * num
    End Function
    
    Sub Main()
        Console.WriteLine(Square(42))
    End Sub
End Module