aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/jsimport/testScriptImport.js
blob: 2ecccd8816ae9016a82bebfd3359ec2f4972f093 (plain)
1
2
3
4
5
6
7
8
9
10
11
.import "importOne.js" as ImportOneJs // test that we can import scripts from .js files

var greetingText = ImportOneJs.greetingString()

function randomInteger(min, max) {
    if (max > min) {
        if (min > 10) return min;
        return max;
    }
    return min;
}