foreach()

Nanowrimo registration supposedly starts today. One month till I’ll be writing like a madman. I think as a sort of “warm up” for the big month, I’m going to try and write a poem a day. I was thinking about this on the bus this morning, and also about how I don’t write enough poems about technology, so I may try and keep to that broad theme for the whole month.

The first one is called foreach() and is written in parsable php.

===

<php
	#  poem:  foreach()
	foreach( $thing_you_know as $useful_thing ) {
		foreach( $useful_thing as $fact ) {
			foreach( $fact as $assumption ) {
				if( $assumption['unsure'] == true ) {
					unset( $useful_thing );
				}
			}
		}
	}
	if( empty( $thing_you_know ) ) {
		return true;
	}
?>