| TinTin++ Mud Client Manual |
| Forall |
| Syntax: #forall {list} {commands} |
| 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. |
Example: #forall {Bob Jim Tom} {say Hello &0!} |
| This equals: say Hello Bob!;say Hello Jim!;say Hello Tom |