Psst.. new poll here.
[email protected] web/email now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!
Paste
Pasted as Plain Text by holli ( 2 years ago )
1. Use an infinite loop:
loop {
# Do something
}
2. Make a recursive call:
sub infinite_loop {
# Do something
infinite_loop();
}
3. Use an infinite while loop:
while (True) {
# Do something
}
Revise this Paste