15
1
Option Strict On
2
Imports System
3
Public Module Module1
4
Public Sub Main()
5
'Declare an array to store the alphabet
6
Dim alphabet() As String = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
7
8
'Spell my name by getting the appropriate value
9
Console.Write(alphabet(3)) 'd
10
Console.Write(alphabet(0)) 'a
11
Console.Write(alphabet(21)) 'v
12
Console.Write(alphabet(8)) 'i
13
Console.Write(alphabet(3)) 'd
14
End Sub
15
End Module
Cached Result