Skip to content

Instantly share code, notes, and snippets.

@jda0
Created December 12, 2013 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jda0/7931993 to your computer and use it in GitHub Desktop.
Save jda0/7931993 to your computer and use it in GitHub Desktop.
Module Module1
Sub Main()
For i = 0 To 255
Select Case i
Case 9
Console.Write("9 : \T")
Case 10
Console.Write("10 : \N")
Case 13
Console.Write("13 : \R")
Case Else
Console.Write(i & " : " & Chr(i))
End Select
Console.Write(vbTab & vbTab)
Next
Console.Read()
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment