Voting

Category

real language

Bookmarking

Del.icio.us Digg Diigo DZone Earthlink Google Kick.ie
Windows Live LookLater Ma.gnolia Reddit Rojo StumbleUpon Technorati

Language Nemerle

(up-to-date version)

Date:06/20/06
Author:Vermicious Knid
URL:n/a
Comments:0
Info:http://nemerle.org
Score: (3.01 in 160 votes)
#pragma indent
using System

def capitalize = str => Char.ToUpper(str[0]).ToString() + str.Substring(1);

def beers(n)
  | 0 => "no more bottles of beer"
  | 1 => "1 more bottle of beer"
  | _ => $"$n bottles of beer"

def onTheWall = n => $"$(beers(n)) on the wall, $(beers(n)).\n"

def passAround(n)
  | 0 => $"Go to the store and buy some more, $(beers(99)) on the wall.\n"
  | _ => $"Take one down and pass it around, $(beers(n-1)) on the wall.\n"

$[99, 98 .. 0].Iter(n => Console.WriteLine(capitalize(onTheWall(n)) + passAround(n)))

Download Source | Write Comment

Alternative Versions

VersionAuthorDateCommentsRate
1caminoix09/13/052
english numeralsVermicious Knid06/20/060
ext. methods and foreachVermicious Knid06/20/060

Comments

Download Source | Write Comment

Add Comment

Please provide a value for the fields Name, Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.

Please don't post large portions of code here! Use the form to submit new examples or updates instead!

Name:

eMail:

URL:

Security Code:
  
Comment: