Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > dc51b8a2b4c20bd1ac1b9c8f81249719 > files > 3374

boost-examples-1.55.0-8.mga5.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);
}