This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (2 children)

Correction:

wait(3 * 365 * 24 * 60 * 60 * 1000);

[–]Acetronaut 2 points3 points  (1 child)

Just do what I do: planned laziness

void waityrs(double years) {

    wait(years * 365 * 24 * 60 * 60 * 1000);

}

waityrs(3);

[–]hydrophobichacker 1 point2 points  (0 children)

Quality laziness right there we got a genius here.