Hello, I am from Indonesia and beginner in defold
I ask why this initialization script is behave not as i wanted
this is my code
your code goes here
function on_input(self, action_id, action)
if action_id == hash("touch") and action.released then
label.set_text("/go#label1", "untouched")
else
action.pressed = label.set_text("/go#label1", "touched")
end
end
```lua
this is in my code editor
![code editor|690x411](upload://sKU9HOn6d72YO2TkZyVry5MOXbh.jpeg)
my question is why and how to solve it?