Sign in
apache
/
casbin-jcasbin-aviatorscript
/
refs/heads/stable
/
.
/
examples
/
function.av
blob: 13294edb9a9647d6520c153fd4d451eebf005e68 [
file
] [
log
] [
blame
]
## examples/function.av
fn add
(
x
,
y
)
{
return
x
+
y
;
}
three
=
add
(
1
,
2
);
println
(
three
);
s
=
add
(
'hello'
,
' world'
);
println
(
s
);