perl -lwe'$oldtime = $^T; print( -(($oldtime+0) - ($oldtime = time)) ) while sleep 1' #### my $tm = time; print $tm - $oldtm; $oldtm = $tm; #### ( -(($oldtime || $^T) - ($oldtime = time)) ) #### perl -e'$\=$,=$";$b=1; print $b, $a += $b += $a while $a <1000; print"\n"' #### -( (x + 0) - (x = y) ) #### (x = y) - (x) #### x - x #### 0 #### print 0;