TinTin++ Mud Client Manual  
Get TinTin++ Mud Client at SourceForge.net. Fast, secure and Free Open Source software downloads
Forall
space
Syntax: #forall {list} {commands}
space
The forall command works like a simplified loop. Each word in the list will be stored in the &0 variable at execution time and can be used in the commands part.
space
Example: #forall {Bob Jim Tom} {say Hello &0!}
This equals: say Hello Bob!;say Hello Jim!;say Hello Tom
space