Jump to content

Arithmetic/Integer: Difference between revisions

Add Avail entry
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
(Add Avail entry)
Line 816:
GuiClose:
ExitApp</lang>
 
=={{header|Avail}}==
<lang Avail>Method "arithmetic demo_,_" is
[
a : integer,
b : integer
|
Print: “a + b”;
Print: “a - b”;
Print: “a × b”; // or a * b
Print: “a ÷ b”; // or a / b, rounds toward negative infinity
Print: “a mod b”; // sign matches second argument
Print: “a ^ b”;
];
</lang>
 
=={{header|AWK}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.