Sign in
apache
/
casbin-jcasbin-aviatorscript
/
refs/heads/stable
/
.
/
src
/
test
/
resources
/
scripts
/
for_continue6.av
blob: a0b2fefdce5e2da8a45774fda47c16988928a144 [
file
]
let
x
=
0
;
for
i
in
range
(
0
,
10
)
{
if
(
i
>
3
)
{
if
(
i
==
4
){
continue
;
}
else
{
let
y
=
i
;
y
=
y
+
1
;
}
}
x
=
x
+
i
;
}
return
x
;