golfscript

GolfScript: A Practical Example

Has anyone used GolfScript for a serious project aside from CodeGolf? Perhaps you could give an example. I am curious to learn it and I am wondering if its worth my time or if its just a hobby language? When I search stackoverflow.com I can only find CodeGolf examples of the language. In some sense it reminds me when I first learned Per...

golfscript nested while loops

Are nested while loops broken in golfscript or do I not know how to use them? I want to iterate Q from 5 to 0, and for each iteration, iterate Z from 10 to 0. The single loops work well separately, and they seem self-contained (not relying on the stack between operations): 5:Q; {"Q:"Q+ p Q} { Q 1- :Q; }while 10:Z;{"Z:"Z+ p Z}{Z 1- :...