' Simple Hello Mum Console Application ' Downloaded from www.publicjoe.co.uk ' ' This software is provided 'as-is', without any express or implied warranty. ' In no event will the author(s) be held liable for any damages arising from ' the use of this software. ' ' Permission is granted to anyone to use this software for any purpose, ' including commercial applications, and to alter it and redistribute it ' freely. ' Allow easy reference to the System namespace classes. Imports System ' This module houses the application's entry point. Public Module HelloMum ' Main is the application's entry point. Public Sub Main() ' Write text to the console. Console.WriteLine( "Hello Mum using Visual Basic!" ) Console.ReadLine() End Sub End Module