Method code for $sys.parse_heartbeat_interval()

[Turn off line numbering]
  1: arg value, @args;
  2: 
  3: value = (> $time.from_english(value) <);
  4: if (value < 1)
  5:     throw(~set, "You cannot set the system heartbeat interval to less than 1 second");
  6: return value;

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon