blob: 20b9d9cabefa6bb20eb43f94f1fb2804f473fe91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
function func1() {
return 1;
}
function func2() {
return 2;
}
function func3() {
return 3;
}
print(func1());
print(func2());
print(func3());
|