Language Vim
| Date: | 04/20/05 |
| Author: | Anonymous |
| URL: | n/a |
| Comments: | 0 |
| Info: | n/a |
| Score: |
" Vim version. Vim is a mighty vi clone. http://www.vim.org.
" Yank, execute, and call w/:
" :%y | @" | call BeerSong()
fun! BeerSong()
let n = 100
while n > 0
let b = Bottles(n)
echo b 'on the wall,' b.','
let n = n - 1
let b = Bottles(n)
echo ' take one down, pass it around,' b 'on the wall.'
endw
endf
fun! Bottles(n)
let p = (a:n > 0) ? a:n : 'no more'
let s = (a:n == 1) ? '' : 's'
return p.' bottle'.s.' of beer'
endf
Download Source | Write Comment
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