blob: eb91b92ec8da1fca3bc6f1c35d59570cf42484c6 [file] [log] [blame]
/* testing the shunting yard operator precedence algorithm */
int main()
{
return 1 + 2 + 3 + 5 * 4 * 6 + 5; /* answer is 131 */
}