blob: 25545a79be5b35f0fd175daacac67e2e2d676923 (
plain)
1
2
3
4
5
6
7
8
9
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
print('1');
print('2');
function foo() {
print('Function foo');
}
print('3');
foo();
|