Arithmetic/Integer: Difference between revisions

m
Changed over to works with template
(added ocaml)
m (Changed over to works with template)
Line 327:
 
etc
 
 
=={{header|Toka}}==
Line 337 ⟶ 336:
2dup ." a/b = " / . ." remainder " mod . cr
] is mathops
 
 
 
=={{header|UNIX Shell}}==
Line 344 ⟶ 341:
With external utilities:
 
'''Interpreter:''' any{{works with|Bourne shell}}
 
#!/bin/sh
read a; read b;
Line 357 ⟶ 353:
With SUSv3 parameter expansions:
 
{{works with|Almquist SHell}}
'''Interpreter:''' [[Almquist SHell]] (NetBSD 3.0), [[Bourne Again SHell]] 3.2, [[Korn SHell]] (5.2.14 99/07/13.2), [[Z SHell]]
{{works with|Bourne Again SHell|3.2}}
 
{{works with|Korn SHell|5.2.14}}
{{works with|Z SHell}}
#!/bin/sh
read a; read b;
Anonymous user