while ( /* condition */ )
	{
		/* code */
	}
            
	
	do
	{
		/* code */
	}
	while ( /* condition */ )
            
	
	for ( /* initialisation */ ; /* condition */ ; /* continuation */ )
	{
		/* code */
	}
            
	
	foreach ( /* tableau */ as /* variable */ => /* variable */ )
	{
		/* code */
	}
            
	
	if ( /* condition */ )
	{
		/* code */
	}
	else if ( /* condition */ )
	{
		/* code */
	}
	else
	{
		/* code */
	}
            
	
	function /* Nom */ ( /* argument1 */ /* , argument2 */ ... )
	{
		/* code */
	}