[PDD] Add docs for the Parrot_PMC_push_* and Parrot_PMC_pop_* functions
[parrot.git] / examples / tutorial / 11_math_ops_self_mod.pir
blob1ee7c9a9925d5065cdb012facc80ad2b53a01205
1 # Copyright (C) 2007-2009, Parrot Foundation.
2 # $Id$
4 =head1 Math Operations (continued)
6 There is a second common form of math operations. This form takes
7 one argument and performs the operation on the result, modifying it in
8 place.
10 =cut
12 .sub main :main
14     $I0 = 3
15     $I0 *= 2
16     say $I0
18     $N0 = 22.44
19     $N0 /= 4
20     say $N0
22 .end
24 # Local Variables:
25 #   mode: pir
26 #   fill-column: 100
27 # End:
28 # vim: expandtab shiftwidth=4 ft=pir: