home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch4-DeclareAVariable / Module1.vb < prev   
Text File  |  2001-07-12  |  317b  |  13 lines

  1. Module Module1
  2.     
  3.     Sub Main()
  4.         Dim myShort As Short = 10
  5.         Dim yourShort As Short = 20, ourShort As Short = 50
  6.         Console.WriteLine(myShort)
  7.         Console.WriteLine(yourShort)
  8.         Console.WriteLine(ourShort)
  9.         Console.ReadLine() ' wait for enter
  10.     End Sub
  11.  
  12. End Module
  13.