Advertisement
Assa

Nemerle: 99 bottles of beer by Assa

Oct 15th, 2011
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. public class Hello
  4. {
  5.     public static Main () : void
  6.     {
  7.        
  8.         for(mutable i = 100;i>1;--i)
  9.         {
  10.             Console.WriteLine("{0} bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.", i);
  11.         }
  12.         Console.WriteLine("1 bottle of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.");
  13.     }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement