Jaws

Public Function IsBoatBigEnough() as Boolean
    If Shark.Length => (Boat.Length / 2)
        Print("We're gonna need a bigger boat.")
        Return False
    Else
        Return True
    End If
End If
Vote up this code1