Tag Archives: Code
Saturday Mixer – The 5th Bell
Since the last 7 weeks of my life have been consumed by learning to program, I’ll do this in VB.NET code.
Code Snippet
- Module saturdayMixer
- Sub Main()
- Dim saturdayMixer As String
- Console.WriteLine("Do you know the rules? (y or n)")
- saturdayMixer = Console.ReadLine()
- ' saturdayMixer = Console.ReadLine()
- If saturdayMixer = "y" Then
- Console.WriteLine("Welcome to the Saturday Mixer!" & ControlChars.CrLf _
- & "You know the rules so let us know what is on your mind and discuss whatever you want.")
- ElseIf saturdayMixer = "n" Then
- Console.WriteLine("You know the drill:" & ControlChars.CrLf _
- & "1. Most topics are fair game as long as it has some decency." _
- & ControlChars.CrLf _
- & "2. If a topic just becomes a series of personal attacks," _
- & ControlChars.CrLf & "the comments will be closed." _

Recent Comments