' Collection of code snippets by Arne Vajhøj ' posted to eksperten.dk, usenet and other places (2002-now) Imports System Module Main Sub Main() Dim a As Integer = 8 Dim b As Integer = 3 Dim c As Integer = a / b Dim d As Integer = a \ b Console.WriteLine(c & " " & d) End Sub End Module