mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 14:04:04 -05:00
* Support trunk and execution for .NET * Adjust compilers order * Support stdin * Update samples
12 lines
201 B
VB.net
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
|