Skip to content

Instantly share code, notes, and snippets.

@relrod
Created June 10, 2009 06:08
Show Gist options
  • Save relrod/127043 to your computer and use it in GitHub Desktop.
Save relrod/127043 to your computer and use it in GitHub Desktop.
Module Module1
Sub Main()
For i As Integer = 1 To 100
If i Mod 3 = 0 Then
Console.WriteLine("Fizz")
ElseIf i Mod 5 = 0 Then
Console.WriteLine("Bizz")
Else
Console.WriteLine(i)
End If
Next
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment