Are we there yet? Friday, 10 September 2010 - 17:39
Publications
Comments

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.

 Read more... (210 words)

Code Snippet
  1. Module saturdayMixer
  2.  
  3.    Sub Main()
  4.       Dim saturdayMixer As String
  5.  
  6.       Console.WriteLine("Do you know the rules? (y or n)")
  7.       saturdayMixer = Console.ReadLine()
  8.       ' saturdayMixer = Console.ReadLine()
  9.  
  10.       If saturdayMixer = "y" Then
  11.          Console.WriteLine("Welcome to the Saturday Mixer!" & ControlChars.CrLf _
  12.          & "You know the rules so let us know what is on your mind and discuss whatever you want.")
  13.  
  14.       ElseIf saturdayMixer = "n" Then
  15.          Console.WriteLine("You know the drill:" & ControlChars.CrLf _
  16.          & "1. Most topics are fair game as long as it has some decency." _
  17.          & ControlChars.CrLf _
  18.          & "2. If a topic just becomes a series of personal attacks," _
  19.          & ControlChars.CrLf & "the comments will be closed." _
  • Share/Bookmark
  • Share/Bookmark