Forgot to add the test case for the previous commit

This commit is contained in:
Sei Lisa 2020-06-01 20:56:31 +02:00
parent d6bf0c390e
commit f3037df055
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,12 @@
list out(){
integer n = 3;
@continue;
llOwnerSay((string)n);
--n;
if( !n )
return [];
jump continue;
return [];
}
default{state_entry(){llParticleSystem(out());}}

View file

@ -0,0 +1,19 @@
list out()
{
integer n = 3;
@continue;
llOwnerSay((string)n);
--n;
if (!n)
return [];
jump continue;
return [];
}
default
{
state_entry()
{
llParticleSystem(out());
}
}