Language StarLogo
| Date: | 04/20/05 |
| Author: | Uwe Kaessner |
| URL: | n/a |
| Comments: | 0 |
| Info: | n/a |
| Score: |
; StarLogo version of 99 bottles of beer
; by Uwe Kaessner (ukblue@friendsinside.de)
; StarLogo (http://www.media.mit.edu/starlogo) is based on Logo
to 99bottles
let [:i 99]
repeat 99 [
print se :i [bottle(s) of beer on the wall]
print se :i [bottle(s) of beer]
print [take one down, pass it around]
print se (:i - 1) [bottle(s) of beer on the wall]
print ""
set :i (:i - 1)
]
end
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