Imports System
Public Module Module1
Public Sub Main()
dim name as string= "Noura"
dim age as integer= 16
dim height as single= 161
console.Write("my name is {0} and my age is {1} years old and my height is {2} cm",name,age,height)
End Sub
End Module