Files
compiler-explorer/examples/vb/default.vb
Steve 75b9d30485 Support trunk and execution for .NET (#4351)
* Support trunk and execution for .NET
* Adjust compilers order
* Support stdin
* Update samples
2022-11-27 10:14:35 -06:00

12 lines
201 B
VB.net

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