instead of for dracula for(;;) or while($true) it more lisible to use loop for infinite loop
loop {
}
Generally loops need a Goto or equivalent (like break) to exit are considered bad.
@p0W3RH311 Also note that adding new keywords is considered a breaking change since someone may already have defined a loop command.
Most helpful comment
@p0W3RH311 Also note that adding new keywords is considered a breaking change since someone may already have defined a
loopcommand.