Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > d3c732bcddee997381ae7599db6439ca > files > 3753

boost-examples-1.60.0-6.1.mga6.noarch.rpm

/* testing the shunting yard operator precedence algorithm */

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