foo = 1; bar = 5; function inc_dec( x, y ) { x++; y--; return( x, y ); } res1, res2 = inc_dec( foo, bar );