Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

giorkos

Module VBModule
 
    Sub Main()
    
    dim Age as integer 'this is a integer whole numbers only'
    dim Name as string 'this is a string of characters'
    dim Dob as date 'this is date time datatype'
   dim Gender AS char    'this is acharacter'
   dim height as integer 'this is in metre'
  dim license as boolean 'this is true or false'
  
  'assignment statements'
  Age =88
  Name="ael limassol"
  'Date ="21/01/1930"
  Gender="m"
  Height= 7
  lisence=true

        Console.WriteLine("Hello, world! mr " & name)
        console.writeline ("your age is " & age)
        console.writeline("your gender is " & gender)
        console.write("your height " & height)
        console.writeline("do you have a lisence " & license)
    
    End Sub
  
End Module

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.