This commit is contained in:
Kotet 2017-11-27 07:37:09 +09:00
parent abc3e6d47e
commit 8cd9265384
3 changed files with 12 additions and 12 deletions

View File

@ -1,12 +1,12 @@
static foreach (thing; things)
{
doStuff();
pragma(msg, thing);
}
static foreach_reverse (thing; things)
{
doStuff();
pragma(msg, thing);
}
static foreach (thing; things)
doStuff();
pragma(msg, thing);
static foreach_reverse (thing; things)
doStuff();
pragma(msg, thing);

View File

@ -1,4 +1,4 @@
static foreach (thing; things){doStuff();}
static foreach_reverse (thing; things){doStuff();}
static foreach (thing; things) doStuff();
static foreach_reverse (thing; things) doStuff();
static foreach (thing; things){pragma(msg,thing);}
static foreach_reverse (thing; things){pragma(msg,thing);}
static foreach (thing; things) pragma(msg,thing);
static foreach_reverse (thing; things) pragma(msg,thing);

View File

@ -1,10 +1,10 @@
static foreach (thing; things) {
doStuff();
pragma(msg, thing);
}
static foreach_reverse (thing; things) {
doStuff();
pragma(msg, thing);
}
static foreach (thing; things)
doStuff();
pragma(msg, thing);
static foreach_reverse (thing; things)
doStuff();
pragma(msg, thing);