Sophie

Sophie

distrib > Fedora > 17 > i386 > media > updates > by-pkgid > b03c44838559deaeff848c57e893606a > files > 1768

boost-examples-1.48.0-14.fc17.noarch.rpm

/* testing the shunting yard operator precedence algorithm */

int main()
{
    return 1 + 2 + 3 + 5 * 4 * 6 + 5; /* answer is 131 */
}