Language OCaml
(functional version)
| Date: | 04/20/05 |
| Author: | Anonymous |
| URL: | n/a |
| Comments: | 0 |
| Info: | n/a |
| Score: |
let rec ninetyNineBottlesOfBeer = function
0 -> print_string "no more bottles of beer\n"
| 1 -> print_string "1 bottle of beer on the wall. Take it down, pass
it around\n" ; ninetyNineBottlesOfBeer 0
| n -> print_int n ; print_string " bottles of beer on the wall. Take
one down, pass it around\n" ; ninetyNineBottlesOfBeer (n - 1)
in ninetyNineBottlesOfBeer 99 ;
(* ocamlopt -o ninetyNineBottlesOfBeer nintyNineBottlesOfBeer.ml *)
Download Source | Write Comment
Alternative Versions
| Version | Author | Date | Comments | Rate |
|---|---|---|---|---|
| version with recursive variant type | Pierre Etchemaïté | 11/18/05 | 1 | |
| A little modification to the current one | Philippe Wang | 01/28/06 | 1 | |
| historic version | Philipp Winterberg | 04/20/05 | 0 | |
| working with new versions, using printf | David Baelde | 11/08/05 | 0 |
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!
Comments