Try:
Public Module HelloWorldMod
Public Sub Main()
Console.WriteLine("Hello World")
End Sub
End Module
Without the publics it worked for me, but I am using .Net 1.1 In .Net 2.0 it complains about calling subroutines that are not tagged with Public (in turn forcing us to write better code, go figure).
Happy coding,
Firesickle.com