Sophie

Sophie

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

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

/* conjure program with syntax error */

int foo(n)
{
    int a = 2;
    if (n @ 3) /* we don't have @ operator in conjure */
    {
        a = 3
    }
    return a;
}

int main()
{
    return foo(10);
}