blob: 7a3b0acca67368131d5164e2768af8a7c7c43b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@static_unload
class_name StaticVariablesOther
static var perm := 0
static var prop := "Hello!":
get: return prop + " suffix"
set(value): prop = "prefix " + str(value)
func test():
print("ok")
|