Jump to content

Arithmetic/Integer: Difference between revisions

Line 745:
</lang>
 
 
=={{header|friendly interactive shell}}==
<lang fishshell>
read a
read b
echo 'a + b =' (math "$a + $b") # Sum
echo 'a - b =' (math "$a - $b") # Difference
echo 'a * b =' (math "$a * $b") # Product
echo 'a / b =' (math "$a / $b") # Integer quotient
echo 'a % b =' (math "$a % $b") # Remainder
echo 'a ^ b =' (math "$a ^ $b") # Exponentation
</lang>
 
=={{header|Frink}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.