blob: a23943d57ad0c2371881da78003fc6d23e17e71b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
function foo() {
print('Print me');
debugger;
print('Print me also');
}
function bar() {
print('Print me');
debugger;
print('Print me also');
return 5;
}
foo();
bar();
print('Print me at the end');
|