Imports
System
Microsoft.SmallBasic.Library
System.Threading
System.IO
<SmallBasicType()> _
Public
Module
FirstModule
Function
ShowMessage(
ByVal
MsgTxt
As
Primitive)
Primitive
MsgBox(MsgTxt.ToString)
End
To create more functions in the FirstModule, all you have to do is add more functions. If you need to get any variables from the user, just separate the ByVal YOURVARIABLE with commas. If you need to return a function, just put return before it like:
NetOpen()
Return
My.Computer.Network.IsAvailable