lib_remainder.alc 106 B

12345
  1. include "primitives.alh"
  2. Integer function remainder(a : Integer, b: Integer):
  3. return a - ((a / b) * b)!