Option Strict On Option Explicit On Module ExpressionsDemo Sub Main() Dim i as Integer = 13 \ 6 ' i becomes 2 Dim r as Integer = 13 Mod 6 ' r becomes 1 Dim d as Double = 13 / 6 ' d becomes 2,16666666666667 Dim p as Double = 2 ^ 10 ' p becomes 1024 ' Dim b as Boolean i = 3 ' Illegal - Compiler error Dim b as Boolean, c as Boolean ' b and c are false (default values) c = b = true ' TRICKY: c becomes false End Sub End Module