Espresso Libre

Download

A port of the Textmate Espresso Libre theme.
http://www.unwrongest.com/software/color-theme-espresso-libre-for-espresso/


<?php

	function f($x)
	{
		return sqrt(abs($x)) + 5*pow($x, 3);
	}
	
	
	$items = array();
	
	for ($i = 0; $i < 11; $i++)
	{
		$items[] = $_GET[$i];
	}
	
	$items = array_reverse($items);
	
	foreach ($items as $x)
	{
		$y = f($x);
		
		if ($y > 400)
			echo $x." TOO LARGE";
		else
			echo $x." ".$y;
	}
	
?>

Comment