In a command line application I'm building I'd like to have two "processes" running at the same time. By processes, I mean such as:
Every 57 seconds, I would like to do task A, and every 250 seconds do task B. Those are arbitrarily chosen numbers, but you get the point.
How can I have both of these "processes" being checked at the same time?
Thanks guys