Robinson's Bizarre Binary Beachball

A binary beachball of infinite complexity, designed to confuse and bemuse.

			
				// Binary beachball generator
				int beachball = 0;
				while (beachball < 100000) {
					beachball = beachball * 2;
					print(beachball);
				}
			
		

Subpages