Nested Functions



	int foo()
	{
		int x = 3;

		int bar(int z)
		{
			return x + z;
		}

		return bar(2) * bar(3);
	}