Pages

Search This Blog

String Declaration


Module StringDeclaration

    Sub Main()
        Dim str As String
        Console.Write("Enter your Name: ")
        str = Console.ReadLine()
        Console.Write("Your name is " + str)
        Console.ReadLine()
    End Sub

End Module

1 comment: