Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > cd14cddf3b3ceaf1193157472227757a > files > 884

parrot-doc-1.6.0-1mdv2010.0.i586.rpm

# Copyright (C) 2007-2009, Parrot Foundation.
# $Id: 10_math_ops.pir 40124 2009-07-16 21:36:57Z allison $

=head1 Math Operations

Many common math operations have simple operator syntax in
PIR. Operators like C<+>, C<->, C</> and C<*> are all
implemented in PIR, but so are a few less common ones such
as C<<< << >>>, C<<< >> >>>, C<|>, C<&>, C<^>  and C<%>.

=cut

.sub main :main

    $I0 = 5
    $I1 = $I0 + 2
    print $I1
    print "\n"

    $N0 = 6.7
    $N1 = $N0 - 1.5
    print $N1
    print "\n"

.end

# Local Variables:
#   mode: pir
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir: