Вот код, который я хочу обновить значение «Score» после функции.
function OnStart() {
lay = app.CreateLayout("linear", "VCenter,FillXY")
text = app.CreateText(score)
lay.addChild(text)
app.AddLayout(lay)
}
let score = 0;
function increment(x) {
x++;
}
increment(score)