aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qjsengine/testmodule.mjs
blob: df561c06a1d61da53c29bf079e9fe266f257e5de (plain)
1
2
3
4
5
6

export var value = 42;

export function sideEffect() {
    value = value + 1
}