5
LuPaw
6y

So yesterday evening when going to bed I wanted to sleep asap.
Therefore I used a 'tactic' called count to ten and then start over again. This is supposed to be relaxing so you stop thinking about other things an you get sleepy faster.
It usually works...

...But then my brain decided to write a program for said procedure in my mind. I actually started thinking:

int count=0;

While ( ! isAsleep() ){

think(count);
count++;

If( count == 10 ){
count = 0;
}
}

It didn't really help me falling asleep...

Comments
Add Comment