Suppose your name was George Gershwin. Write a complete main method that would print your last name, followed by a comma, followed by a space and your first name.
Imports System.IO
Module Module1
Sub Main()
Const lastName As String = "Gershwin"
Const firstName As String = "George "
Console.WriteLine("{0}, {1}", lastName, firstName)
Console.ReadLine()
End Sub
End Module
Comments
Leave a comment