summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/features/assign_member_with_operation.gd
blob: f6526aefb4c73b040df2fa0505cec72e8cd3ddb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
extends Node

func test():
	process_priority = 10
	var change = 20

	print(process_priority)
	print(change)

	process_priority += change

	print(process_priority)
	print(change)