template <class T>
void mystify(T a, T b)
{
if ( a > b )
{
doMagic();
return a;
}
else
{
return b;
}
}
def mystify(a, b):
if a > b:
doMagic()
return a
else:
return b
def foo():
#{
blaBla();
#}
def foo(): #begin blaBla(); #end