show/hide this revision's text 2 added 4 characters in body

"(note: it will only hold variables, there will never be functions)"

Never is a big word. Usually "never" means "eventually". Since that's the case, I'd suggest you use a class. That way, when things change, you don't have so much to change.

The Java (and Python) folks have gotten along fine with everything being a class. It hasn't hurt them any to not have these specialized method-less classes that C++ calls a "struct".

show/hide this revision's text 1

"(note: it will only hold variables, there will never be functions)"

Never is a big word. Usually "never" means "eventually". Since that's the case, I'd suggest you use a class. That way, when things change, you don't have so much to change.

The Java (and Python) folks have gotten along fine with everything being a class. It hasn't hurt them any to have these specialized method-less classes that C++ calls a "struct".