PostsChallengesPortalsAuthorsBooks
Posts
Challenges
Portals
Authors
Books
beta
Sign Up
Search
Profile banner image for ZenDawg
Profile avatar image for ZenDawg
Follow
ZenDawg
A Clevelander. A Novelist. A Buckeye, with a BS from Ohio State. A liberal Rust Belt redneck. Who reads. A lot.
2 Posts • 16 Followers • 42 Following
Posts
Likes
Challenges
Books
Profile avatar image for ZenDawg
ZenDawg
• 34 reads

Strange Loop

Print “This sentence will run on forever and ”;

x==0;

Do While x>=0 {

Print “ever and ”;

x==x+1;

}.

[Editor Note: This written in pseudo computer code. It will run with minor modifications of syntax on any basic programming language.

The program creates an infinite sentence that reads: “This sentence will run on forever and ever and everf and ever and ever and ever and ever and ever....” Since x starts at ‘0’ and increments up as x+1, the condition”Do While x is greater than or equal to zero” will always be true. This means the output will be infinite, and by definition, no longer sentence can ever be written (though other infinite sentences can be written, though they’de be of equally infinite length).]

3
0
0
Challenge
Write the longest sentence possible
I'll declare the winner based on word count. [Note Well: Punctuation counts! I will disqualify run-ons. If you'd like to know whether I consider your work properly-punctuated, tag me in the comments with that request.] [EDIT: Though I've received many creative entries, this challenge is meant to be taken in a literal sense!! Give me a beast of a sentence that goes on for as long as you can draw it out.]
Profile avatar image for ZenDawg
ZenDawg
• 75 reads

Strange Loop

Print “This sentence will run on forever and ”;

x==0;

Do While x>=0 {Print “ever and ”;

x==x+1;}.

[Editor Note: This sentence is written in pseudo computer code. It will run with minor modifications of syntax on any basic programming language.

The program creates an infinite sentence that reads: “This sentence will run on forever and ever and ever and ever and ever and ever and ever and ever....” Since x starts at ‘0’ and increments up as x+1, the condition ”Do While x is greater than or equal to zero” will always be true. This means the output will be infinite, and by definition, no longer sentence can ever be written (though other infinite sentences can be written, though they’d be of equally infinite length).]

8
2
3