Sign in
third-party-mirror
/
orbit
/
301094089f7066c20f6885ee60d316d3f550a3c2
/
.
/
qt-everywhere-src-5.15.1
/
qtdeclarative
/
tests
/
manual
/
v4
/
fun.1.js
blob: 9d73cade94b85d53af5a6f1559f13639cf602544 [
file
] [
log
] [
blame
]
function
foo
(
a
,
b
)
{
print
(
a
,
b
)
}
var
foo2
=
foo
var
foo3
=
function
(
a
,
b
)
{
print
(
a
,
b
);
}
foo
(
1
,
2
)
foo2
(
1
,
2
)
foo3
(
1
,
2
)