I'm not sure what to hunt for on this, but I was wondering how many times a constant will be assigned to memory when you define one inside a class.
Say you did this:
class MyObj:
const DATA = 123
func _ready():
var arr = []
for i in range(100): arr.append(MyObj.new())
Will Godot store 100 copies of this constant in memory?